tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gnutar: fix cross compilation on darwin
Andrew Childs
4 years ago
0a5dcc98
21541fc9
+2
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
archivers
gnutar
default.nix
+2
-3
pkgs/tools/archivers/gnutar/default.nix
···
30
30
31
31
outputs = [ "out" "info" ];
32
32
33
33
-
buildInputs = [ ]
34
34
-
++ lib.optional stdenv.isLinux acl
35
35
-
++ lib.optional stdenv.isDarwin autoreconfHook;
33
33
+
nativeBuildInputs = lib.optional stdenv.isDarwin autoreconfHook;
34
34
+
buildInputs = lib.optional stdenv.isLinux acl;
36
35
37
36
# May have some issues with root compilation because the bootstrap tool
38
37
# cannot be used as a login shell for now.