Skip to content

Commit 94fc721

Browse files
committedNov 9, 2017
git: remove custom sandbox profile (not allowed by modern Nix anymore)
1 parent 0f75e6b commit 94fc721

File tree

1 file changed

+0
-3
lines changed
  • pkgs/applications/version-management/git-and-tools/git

1 file changed

+0
-3
lines changed
 

Diff for: ‎pkgs/applications/version-management/git-and-tools/git/default.nix

-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ stdenv.mkDerivation {
5353
NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.cc.isClang) "-lgcc_s"
5454
+ stdenv.lib.optionalString (stdenv.isFreeBSD) "-lthr";
5555

56-
# without this, git fails when trying to check for /etc/gitconfig existence
57-
propagatedSandboxProfile = stdenv.lib.sandbox.allowDirectoryList "/etc";
58-
5956
makeFlags = "prefix=\${out} PERL_PATH=${perl}/bin/perl SHELL_PATH=${stdenv.shell} "
6057
+ (if pythonSupport then "PYTHON_PATH=${python}/bin/python" else "NO_PYTHON=1")
6158
+ (if stdenv.isSunOS then " INSTALL=install NO_INET_NTOP= NO_INET_PTON=" else "")

0 commit comments

Comments
 (0)
Please sign in to comment.