cypress: use lib.getLib udev instead of udev.lib
This will pick the `lib` output if it exists, otherwise default to `out`.
This commit is contained in:
parent
05a5afc979
commit
3c2f4cf704
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchzip, autoPatchelfHook, xorg, gtk2, gnome2, gtk3, nss, alsaLib, udev, unzip, wrapGAppsHook }:
|
{ stdenv, lib, fetchzip, autoPatchelfHook, xorg, gtk2, gnome2, gtk3, nss, alsaLib, udev, unzip, wrapGAppsHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "cypress";
|
pname = "cypress";
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
nss gtk2 alsaLib gnome2.GConf gtk3 unzip
|
nss gtk2 alsaLib gnome2.GConf gtk3 unzip
|
||||||
];
|
];
|
||||||
|
|
||||||
runtimeDependencies = [ udev.lib ];
|
runtimeDependencies = [ (lib.getLib udev) ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin $out/opt/cypress
|
mkdir -p $out/bin $out/opt/cypress
|
||||||
|
Loading…
x
Reference in New Issue
Block a user