1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

eudev: remove glib from buildInputs

eudev does not depend on glib.  I grepped the source code for glib
and found no references to it.
This commit is contained in:
Adam Joseph 2023-01-02 23:36:33 -08:00
parent 4df597f427
commit 5ace5a33b9

View file

@ -2,7 +2,6 @@
, stdenv
, fetchFromGitHub
, autoreconfHook
, glib
, gperf
, kmod
, pkg-config
@ -27,7 +26,6 @@ stdenv.mkDerivation rec {
];
buildInputs = [
glib
kmod
util-linux
];