keybase: 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:
Florian Klink 2020-08-12 20:30:12 +02:00
parent cf55e8762e
commit ee483145d0

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, alsaLib, atk, cairo, cups, udev
{ stdenv, lib, fetchurl, alsaLib, atk, cairo, cups, udev
, dbus, expat, fontconfig, freetype, gdk-pixbuf, glib, gtk3, libappindicator-gtk3
, libnotify, nspr, nss, pango, systemd, xorg, autoPatchelfHook, wrapGAppsHook
, runtimeShell, gsettings-desktop-schemas }:
@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
];
runtimeDependencies = [
udev.lib
(lib.getLib udev)
libappindicator-gtk3
];