franz: use lib.getLib udev instead of udev.lib

This will pick the `lib` output if it exists, otherwise default to `out`.
gstqt5
Florian Klink 2020-08-12 20:27:53 +02:00
parent db75a25d81
commit ce0c244d83
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
{ stdenv { stdenv
, lib
, makeWrapper , makeWrapper
, wrapGAppsHook , wrapGAppsHook
, autoPatchelfHook , autoPatchelfHook
@ -64,7 +65,7 @@ stdenv.mkDerivation {
expat expat
stdenv.cc.cc stdenv.cc.cc
]; ];
runtimeDependencies = [ udev.lib libnotify ]; runtimeDependencies = [ (lib.getLib udev) libnotify ];
unpackPhase = "dpkg-deb -x $src ."; unpackPhase = "dpkg-deb -x $src .";