mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
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:
parent
cf55e8762e
commit
ee483145d0
|
@ -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
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue