nixpkgs/pkgs/tools/networking/network-manager/0.9.8/default.nix

65 lines
2.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, intltool, pkgconfig, dbus-glib
2015-06-11 16:00:35 -07:00
, udev, libnl, libuuid, gnutls, dhcp
2016-08-15 00:32:51 -07:00
, libgcrypt, perl, libgudev, avahi, ppp, kmod }:
2015-06-11 16:00:35 -07:00
stdenv.mkDerivation rec {
name = "network-manager-${version}";
version = "0.9.8.10";
src = fetchurl {
url = "mirror://gnome/sources/NetworkManager/0.9/NetworkManager-${version}.tar.xz";
sha256 = "0wn9qh8r56r8l19dqr68pdl1rv3zg1dv47rfy6fqa91q7li2fk86";
};
preConfigure = ''
substituteInPlace tools/glib-mkenums --replace /usr/bin/perl ${perl}/bin/perl
2016-08-15 00:32:51 -07:00
substituteInPlace src/nm-device.c \
--replace @avahi@ ${avahi} \
--replace @kmod@ ${kmod}
substituteInPlace src/ppp-manager/nm-ppp-manager.c \
--replace @ppp@ ${ppp} \
--replace @kmod@ ${kmod}
2015-06-11 16:00:35 -07:00
'';
# Right now we hardcode quite a few paths at build time. Probably we should
# patch networkmanager to allow passing these path in config file. This will
# remove unneeded build-time dependencies.
configureFlags = [
"--with-distro=exherbo"
"--with-dhclient=${dhcp}/sbin/dhclient"
"--with-dhcpcd=no"
"--with-iptables=no"
"--with-udev-dir=\${out}/lib/udev"
"--with-resolvconf=no"
"--sysconfdir=/etc" "--localstatedir=/var"
"--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d"
"--with-crypto=gnutls" "--disable-more-warnings"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
"--with-kernel-firmware-dir=/run/current-system/firmware"
"--disable-ppp"
];
2015-11-13 14:23:14 -08:00
buildInputs = [ udev libnl libuuid gnutls libgcrypt libgudev ];
2015-06-11 16:00:35 -07:00
propagatedBuildInputs = [ dbus-glib ];
2015-06-11 16:00:35 -07:00
nativeBuildInputs = [ intltool pkgconfig ];
patches =
[ ./libnl-3.2.25.patch
./nixos-purity.patch
];
preInstall =
''
installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" )
'';
meta = with stdenv.lib; {
homepage = http://projects.gnome.org/NetworkManager/;
description = "Network configuration and management tool";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}