1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

libgudev: fix build after update #23965

I somehow missed this error.
This commit is contained in:
Vladimír Čunát 2017-04-01 13:24:10 +02:00
parent e109faa401
commit af098ff18e
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -11,6 +11,9 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig udev glib ];
# There's a dependency cycle with umockdev and the tests fail to LD_PRELOAD anyway.
configureFlags = [ "--disable-umockdev" ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Projects/libgudev;
maintainers = [ maintainers.eelco ];