tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kbd: fix build
Nikolay Amiantov
8 years ago
69e24c04
373a623d
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kbd
default.nix
+4
-2
pkgs/os-specific/linux/kbd/default.nix
···
38
'';
39
40
postInstall = ''
41
-
substituteInPlace $out/bin/unicode_{start,stop} \
42
-
--replace /usr/bin/tty ${coreutils}/bin/tty
0
0
43
'';
44
45
···
38
'';
39
40
postInstall = ''
41
+
for i in $out/bin/unicode_{start,stop}; do
42
+
substituteInPlace "$i" \
43
+
--replace /usr/bin/tty ${coreutils}/bin/tty
44
+
done
45
'';
46
47