Skip to content

Commit d2938ed

Browse files
committed
fix: comment out unneeded library, but note that it is an example of
adding a library to the build process
1 parent cfe82c9 commit d2938ed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

package.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ craneLib.buildPackage rec {
1414
pkg-config
1515
];
1616

17-
LD_LIBRARY_PATH="${lib.makeLibraryPath [buildPackages.buildPackages.libgit2]}";
17+
# libgit2 stuff is given as an example of how to provide libraries to the build process
18+
#LD_LIBRARY_PATH="${lib.makeLibraryPath [buildPackages.buildPackages.libgit2]}";
1819

1920
nativeBuildInputs = [
2021
buildPackages.stdenv.cc
21-
libgit2
22+
#libgit2
2223
];
2324

2425
doCheck = false;

0 commit comments

Comments
 (0)