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
38
'';
39
39
40
40
postInstall = ''
41
41
-
substituteInPlace $out/bin/unicode_{start,stop} \
42
42
-
--replace /usr/bin/tty ${coreutils}/bin/tty
41
41
+
for i in $out/bin/unicode_{start,stop}; do
42
42
+
substituteInPlace "$i" \
43
43
+
--replace /usr/bin/tty ${coreutils}/bin/tty
44
44
+
done
43
45
'';
44
46
45
47