We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 0f75e6b commit 94fc721Copy full SHA for 94fc721
pkgs/applications/version-management/git-and-tools/git/default.nix
@@ -53,9 +53,6 @@ stdenv.mkDerivation {
53
NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.cc.isClang) "-lgcc_s"
54
+ stdenv.lib.optionalString (stdenv.isFreeBSD) "-lthr";
55
56
- # without this, git fails when trying to check for /etc/gitconfig existence
57
- propagatedSandboxProfile = stdenv.lib.sandbox.allowDirectoryList "/etc";
58
-
59
makeFlags = "prefix=\${out} PERL_PATH=${perl}/bin/perl SHELL_PATH=${stdenv.shell} "
60
+ (if pythonSupport then "PYTHON_PATH=${python}/bin/python" else "NO_PYTHON=1")
61
+ (if stdenv.isSunOS then " INSTALL=install NO_INET_NTOP= NO_INET_PTON=" else "")
0 commit comments