forked from mirrors/nixpkgs
mailspring: 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
67ad63c82d
commit
f77b81df26
|
@ -1,4 +1,5 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, autoPatchelfHook
|
, autoPatchelfHook
|
||||||
, alsaLib
|
, alsaLib
|
||||||
|
@ -45,7 +46,7 @@ stdenv.mkDerivation rec {
|
||||||
runtimeDependencies = [
|
runtimeDependencies = [
|
||||||
coreutils
|
coreutils
|
||||||
openssl
|
openssl
|
||||||
udev.lib
|
(lib.getLib udev)
|
||||||
];
|
];
|
||||||
|
|
||||||
unpackPhase = ''
|
unpackPhase = ''
|
||||||
|
|
Loading…
Reference in a new issue