We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a5a751 commit b6fe99dCopy full SHA for b6fe99d
pkgs/by-name/go/goverlay/package.nix
@@ -13,6 +13,7 @@
13
libGLU,
14
libnotify,
15
libX11,
16
+ lsb-release,
17
nix-update-script,
18
polkit,
19
procps,
@@ -46,7 +47,9 @@ stdenv.mkDerivation rec {
46
47
substituteInPlace overlayunit.pas \
48
--replace-fail '/usr/share/icons/hicolor/128x128/apps/goverlay.png' "$out/share/icons/hicolor/128x128/apps/goverlay.png" \
49
--replace-fail '/sbin/ip' "${lib.getExe' iproute2 "ip"}" \
- --replace-fail '/bin/bash' "${lib.getExe' bash "bash"}"
50
+ --replace-fail '/bin/bash' "${lib.getExe' bash "bash"}" \
51
+ --replace-fail '/usr/lib/os-release' '/etc/os-release' \
52
+ --replace-fail 'lsb_release' "${lib.getExe' lsb-release "lsb_release"} 2> /dev/null"
53
'';
54
55
nativeBuildInputs = [
0 commit comments