tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
netbsd.install: drop `darwin.libutil` dependency
Emily
1 year ago
7863b8cf
d1e72625
+1
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
bsd
netbsd
pkgs
install
package.nix
+1
-3
pkgs/os-specific/bsd/netbsd/pkgs/install/package.nix
···
11
11
groff,
12
12
compatIfNeeded,
13
13
fts,
14
14
-
darwin,
15
14
stdenv,
16
15
}:
17
16
···
44
43
# fts header is needed. glibc already has this header, but musl doesn't,
45
44
# so make sure pkgsMusl.netbsd.install still builds in case you want to
46
45
# remove it!
47
47
-
++ [ fts ]
48
48
-
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.libutil ];
46
46
+
++ [ fts ];
49
47
installPhase = ''
50
48
runHook preInstall
51
49