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

130 lines
4.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, substituteAll, intltool, pkgconfig, dbus-glib
, gnome3, systemd, libuuid, polkit, gnutls, ppp, dhcp, iptables
2016-06-22 11:49:26 +00:00
, libgcrypt, dnsmasq, bluez5, readline
, gobjectIntrospection, modemmanager, openresolv, libndp, newt, libsoup
, ethtool, gnused, coreutils, file, inetutils, kmod, jansson, libxslt
2018-07-05 20:30:53 +00:00
, python3Packages, docbook_xsl, openconnect, curl, autoreconfHook }:
2018-03-07 05:09:48 +00:00
let
2018-07-05 20:30:53 +00:00
pname = "NetworkManager";
2018-03-07 05:09:48 +00:00
in stdenv.mkDerivation rec {
2018-07-05 20:30:53 +00:00
name = "network-manager-${version}";
version = "1.12.2";
src = fetchurl {
2018-07-05 20:30:53 +00:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "09hsh34m8hg4m402pw5n11f29vsfjw6lm3p5m56yxwq57bwnzq3b";
};
2016-11-15 13:15:04 +00:00
outputs = [ "out" "dev" ];
2017-04-04 12:16:59 +00:00
postPatch = ''
patchShebangs ./tools
'';
2012-06-16 19:09:30 +00:00
preConfigure = ''
substituteInPlace configure --replace /usr/bin/uname ${coreutils}/bin/uname
substituteInPlace configure --replace /usr/bin/file ${file}/bin/file
substituteInPlace data/84-nm-drivers.rules \
--replace /bin/sh ${stdenv.shell}
substituteInPlace data/85-nm-unmanaged.rules \
--replace /bin/sh ${stdenv.shell} \
--replace /usr/sbin/ethtool ${ethtool}/sbin/ethtool \
--replace /bin/sed ${gnused}/bin/sed
substituteInPlace data/NetworkManager.service.in \
--replace /bin/kill ${coreutils}/bin/kill
# to enable link-local connections
2015-04-08 15:45:41 +00:00
configureFlags="$configureFlags --with-udev-dir=$out/lib/udev"
2017-09-14 13:53:39 +00:00
# Fixes: error: po/Makefile.in.in was not created by intltoolize.
intltoolize --automake --copy --force
2012-06-16 19:09:30 +00: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 15:45:41 +00:00
"--with-dhclient=${dhcp}/bin/dhclient"
"--with-dnsmasq=${dnsmasq}/bin/dnsmasq"
# Upstream prefers dhclient, so don't add dhcpcd to the closure
"--with-dhcpcd=no"
2015-04-08 15:45:41 +00:00
"--with-pppd=${ppp}/bin/pppd"
"--with-iptables=${iptables}/bin/iptables"
#"--with-udev-dir=$(out)/lib/udev"
"--with-resolvconf=${openresolv}/sbin/resolvconf"
"--sysconfdir=/etc" "--localstatedir=/var"
"--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d"
2013-01-03 12:03:50 +00:00
"--with-crypto=gnutls" "--disable-more-warnings"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
"--with-kernel-firmware-dir=/run/current-system/firmware"
"--with-session-tracking=systemd"
"--with-modem-manager-1"
"--with-nmtui"
2017-09-14 13:53:39 +00:00
"--disable-gtk-doc"
2018-07-05 20:30:53 +00:00
"--with-libnm-glib" # legacy library, TODO: remove
"--disable-tests"
];
2017-04-04 12:16:59 +00:00
patches = [
2018-07-05 20:30:53 +00:00
# https://bugzilla.gnome.org/show_bug.cgi?id=796751
(fetchpatch {
2018-07-05 20:30:53 +00:00
url = https://bugzilla.gnome.org/attachment.cgi?id=372953;
sha256 = "0xg7bzs6dvkbv2qp67i7mi1c5yrmfd471xgmlkn15b33pqkzy3mc";
2018-07-05 20:30:53 +00:00
})
(fetchpatch {
url = https://gitlab.freedesktop.org/NetworkManager/NetworkManager/commit/0a3755c1799d3a4dc1875d4c59c7c568a64c8456.patch;
sha256 = "0r7338q3za7mf419a244vi65b1q497rg84avijybmv6w4x6p1ksd";
})
2018-07-05 20:30:53 +00:00
(substituteAll {
src = ./fix-paths.patch;
inherit inetutils kmod openconnect;
})
2017-04-04 12:16:59 +00:00
];
2018-07-05 20:30:53 +00:00
buildInputs = [
systemd libuuid polkit ppp libndp curl
bluez5 dnsmasq gobjectIntrospection modemmanager readline newt libsoup jansson
];
propagatedBuildInputs = [ dbus-glib gnutls libgcrypt python3Packages.pygobject3 ];
2017-09-14 13:53:39 +00:00
nativeBuildInputs = [ autoreconfHook intltool pkgconfig libxslt docbook_xsl ];
doCheck = false; # requires /sys, the net
2016-06-22 00:40:18 +00:00
preInstall = ''
installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" "runstatedir=$out/var/run" )
'';
2016-06-22 00:40:18 +00:00
postInstall = ''
mkdir -p $out/lib/NetworkManager
2016-06-22 00:40:18 +00: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"'
2016-06-22 00:40:18 +00:00
# rename to network-manager to be in style
2017-04-04 12:16:59 +00:00
mv $out/etc/systemd/system/NetworkManager.service $out/etc/systemd/system/network-manager.service
2016-06-22 00:40:18 +00: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 19:09:30 +00:00
2018-03-07 05:09:48 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "networkmanager";
};
};
meta = with stdenv.lib; {
2018-07-05 20:30:53 +00:00
homepage = https://wiki.gnome.org/Projects/NetworkManager;
description = "Network configuration and management tool";
2018-07-05 20:30:53 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ phreedom rickynils domenkozar obadz ];
2018-07-05 20:30:53 +00:00
platforms = platforms.linux;
};
}