Skip to content

Commit 66797ca

Browse files
committed
fix(mcl): Fix curl library issues\nrefactor(packages): pre-commit-hook compliance
1 parent 4d1aff2 commit 66797ca

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,3 @@
7676
};
7777
};
7878
}
79-

packages/mcl/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ buildDubPackage rec {
6161
nativeBuildInputs = [ pkgs.makeWrapper ] ++ deps;
6262

6363
postFixup = ''
64-
wrapProgram $out/bin/${pname} --set PATH "${lib.makeBinPath deps}"
64+
wrapProgram $out/bin/${pname} --set PATH "${lib.makeBinPath deps}" --set LD_LIBRARY_PATH "${lib.makeLibraryPath deps}"
6565
'';
6666

6767
dubBuildFlags = [

0 commit comments

Comments
 (0)