3
0
Fork 0
forked from mirrors/nixpkgs

network-manager: Fix building against systemd

http://hydra.nixos.org/build/3473319
This commit is contained in:
Eelco Dolstra 2012-12-12 16:26:03 +01:00
parent fd6941ad48
commit 6a0288d14b

View file

@ -29,7 +29,8 @@ stdenv.mkDerivation rec {
"--without-resolvconf"
"--sysconfdir=/etc" "--localstatedir=/var"
"--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d"
"--with-crypto=gnutls" "--disable-more-warnings" ];
"--with-crypto=gnutls" "--disable-more-warnings"
"--with-systemdsystemunitdir=$(out)/etc/systemd/systemd" ];
buildInputs = [ wirelesstools udev libnl libuuid polkit ppp xz ];
@ -57,7 +58,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://projects.gnome.org/NetworkManager/;
description = "Network configuration and management in an easy way. Desktop environment independent.";
description = "Network configuration and management tool";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ phreedom urkud rickynils ];
platforms = platforms.linux;