2018-12-21 15:58:48 -08:00
|
|
|
{ stdenv, fetchurl, substituteAll, intltool, pkgconfig, dbus, dbus-glib
|
2018-10-07 15:04:59 -07:00
|
|
|
, gnome3, systemd, libuuid, polkit, gnutls, ppp, dhcp, iptables
|
2016-06-22 04:49:26 -07:00
|
|
|
, libgcrypt, dnsmasq, bluez5, readline
|
2018-12-02 03:41:15 -08:00
|
|
|
, gobject-introspection, modemmanager, openresolv, libndp, newt, libsoup
|
2018-07-20 17:44:44 -07:00
|
|
|
, ethtool, gnused, coreutils, file, inetutils, kmod, jansson, libxslt
|
2018-07-05 13:30:53 -07:00
|
|
|
, python3Packages, docbook_xsl, openconnect, curl, autoreconfHook }:
|
2011-01-03 10:01:10 -08:00
|
|
|
|
2018-03-06 21:09:48 -08:00
|
|
|
let
|
2018-07-05 13:30:53 -07:00
|
|
|
pname = "NetworkManager";
|
2018-03-06 21:09:48 -08:00
|
|
|
in stdenv.mkDerivation rec {
|
2018-07-05 13:30:53 -07:00
|
|
|
name = "network-manager-${version}";
|
2018-11-22 11:49:07 -08:00
|
|
|
version = "1.14.4";
|
2011-01-03 10:01:10 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-07-05 13:30:53 -07:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2018-11-22 11:49:07 -08:00
|
|
|
sha256 = "064cgj9za0kzarks0lrv0qw2ysdphb5l97iw0c964bfiqzjfv8rm";
|
2011-01-03 10:01:10 -08:00
|
|
|
};
|
|
|
|
|
2016-11-15 05:15:04 -08:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-04-04 05:16:59 -07:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs ./tools
|
|
|
|
'';
|
|
|
|
|
2012-06-16 12:09:30 -07:00
|
|
|
preConfigure = ''
|
2016-03-21 09:04:49 -07:00
|
|
|
substituteInPlace configure --replace /usr/bin/uname ${coreutils}/bin/uname
|
|
|
|
substituteInPlace configure --replace /usr/bin/file ${file}/bin/file
|
2016-02-25 18:28:56 -08:00
|
|
|
# to enable link-local connections
|
2015-04-08 08:45:41 -07:00
|
|
|
configureFlags="$configureFlags --with-udev-dir=$out/lib/udev"
|
2017-09-14 06:53:39 -07:00
|
|
|
|
|
|
|
# Fixes: error: po/Makefile.in.in was not created by intltoolize.
|
|
|
|
intltoolize --automake --copy --force
|
2012-06-16 12:09:30 -07:00
|
|
|
'';
|
|
|
|
|
2011-09-10 12:23:26 -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 = [
|
2015-04-08 08:45:41 -07:00
|
|
|
"--with-dhclient=${dhcp}/bin/dhclient"
|
2015-08-29 15:47:42 -07:00
|
|
|
"--with-dnsmasq=${dnsmasq}/bin/dnsmasq"
|
2011-09-10 12:23:26 -07:00
|
|
|
# Upstream prefers dhclient, so don't add dhcpcd to the closure
|
|
|
|
"--with-dhcpcd=no"
|
2015-04-08 08:45:41 -07:00
|
|
|
"--with-pppd=${ppp}/bin/pppd"
|
|
|
|
"--with-iptables=${iptables}/bin/iptables"
|
|
|
|
#"--with-udev-dir=$(out)/lib/udev"
|
2014-02-28 06:48:28 -08:00
|
|
|
"--with-resolvconf=${openresolv}/sbin/resolvconf"
|
2011-09-10 12:23:26 -07:00
|
|
|
"--sysconfdir=/etc" "--localstatedir=/var"
|
|
|
|
"--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d"
|
2013-01-03 04:03:50 -08:00
|
|
|
"--with-crypto=gnutls" "--disable-more-warnings"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
2013-01-03 09:14:38 -08:00
|
|
|
"--with-kernel-firmware-dir=/run/current-system/firmware"
|
2014-02-13 09:03:06 -08:00
|
|
|
"--with-session-tracking=systemd"
|
|
|
|
"--with-modem-manager-1"
|
2015-05-11 17:54:17 -07:00
|
|
|
"--with-nmtui"
|
2017-09-14 06:53:39 -07:00
|
|
|
"--disable-gtk-doc"
|
2018-07-05 13:30:53 -07:00
|
|
|
"--with-libnm-glib" # legacy library, TODO: remove
|
|
|
|
"--disable-tests"
|
2014-02-13 09:03:06 -08:00
|
|
|
];
|
2011-09-10 12:23:26 -07:00
|
|
|
|
2017-04-04 05:16:59 -07:00
|
|
|
patches = [
|
2018-07-05 13:30:53 -07:00
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
2018-12-21 15:58:48 -08:00
|
|
|
inherit inetutils kmod openconnect ethtool coreutils dbus;
|
|
|
|
inherit (stdenv) shell;
|
2018-07-05 13:30:53 -07:00
|
|
|
})
|
|
|
|
|
2017-04-04 05:16:59 -07:00
|
|
|
];
|
2016-10-16 11:29:18 -07:00
|
|
|
|
2018-07-05 13:30:53 -07:00
|
|
|
buildInputs = [
|
|
|
|
systemd libuuid polkit ppp libndp curl
|
2018-12-02 03:41:15 -08:00
|
|
|
bluez5 dnsmasq gobject-introspection modemmanager readline newt libsoup jansson
|
2018-07-05 13:30:53 -07:00
|
|
|
];
|
2011-09-10 12:23:26 -07:00
|
|
|
|
2018-02-24 18:23:58 -08:00
|
|
|
propagatedBuildInputs = [ dbus-glib gnutls libgcrypt python3Packages.pygobject3 ];
|
2011-09-14 08:50:01 -07:00
|
|
|
|
2017-09-14 06:53:39 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook intltool pkgconfig libxslt docbook_xsl ];
|
2011-09-13 12:27:41 -07:00
|
|
|
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # requires /sys, the net
|
|
|
|
|
2016-06-21 17:40:18 -07:00
|
|
|
preInstall = ''
|
|
|
|
installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" "runstatedir=$out/var/run" )
|
|
|
|
'';
|
2011-09-10 12:23:26 -07:00
|
|
|
|
2016-06-21 17:40:18 -07:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib/NetworkManager
|
2014-02-12 03:29:18 -08:00
|
|
|
|
2016-06-21 17:40:18 -07:00
|
|
|
# FIXME: Workaround until NixOS' dbus+systemd supports at_console policy
|
|
|
|
substituteInPlace $out/etc/dbus-1/system.d/org.freedesktop.NetworkManager.conf --replace 'at_console="true"' 'group="networkmanager"'
|
2013-10-03 05:45:25 -07:00
|
|
|
|
2016-06-21 17:40:18 -07:00
|
|
|
# rename to network-manager to be in style
|
2017-04-04 05:16:59 -07:00
|
|
|
mv $out/etc/systemd/system/NetworkManager.service $out/etc/systemd/system/network-manager.service
|
2014-11-27 03:09:17 -08:00
|
|
|
|
2016-06-21 17:40:18 -07:00
|
|
|
# systemd in NixOS doesn't use `systemctl enable`, so we need to establish
|
|
|
|
# aliases ourselves.
|
|
|
|
ln -s $out/etc/systemd/system/NetworkManager-dispatcher.service $out/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service
|
|
|
|
ln -s $out/etc/systemd/system/network-manager.service $out/etc/systemd/system/dbus-org.freedesktop.NetworkManager.service
|
|
|
|
'';
|
2012-06-16 12:09:30 -07:00
|
|
|
|
2018-03-06 21:09:48 -08:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "networkmanager";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2011-01-03 10:01:10 -08:00
|
|
|
meta = with stdenv.lib; {
|
2018-07-05 13:30:53 -07:00
|
|
|
homepage = https://wiki.gnome.org/Projects/NetworkManager;
|
2012-12-12 07:26:03 -08:00
|
|
|
description = "Network configuration and management tool";
|
2018-07-05 13:30:53 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2017-03-27 10:11:17 -07:00
|
|
|
maintainers = with maintainers; [ phreedom rickynils domenkozar obadz ];
|
2018-07-05 13:30:53 -07:00
|
|
|
platforms = platforms.linux;
|
2011-01-03 10:01:10 -08:00
|
|
|
};
|
2011-01-03 11:10:01 -08:00
|
|
|
}
|