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

115 lines
4 KiB
Nix
Raw Normal View History

2018-12-22 00:58:48 +01:00
{ stdenv, fetchurl, substituteAll, intltool, pkgconfig, dbus, dbus-glib
, gnome3, systemd, libuuid, polkit, gnutls, ppp, dhcp, iptables
2016-06-22 13:49:26 +02:00
, libgcrypt, dnsmasq, bluez5, readline
, gobject-introspection, modemmanager, openresolv, libndp, newt, libsoup
, ethtool, gnused, coreutils, file, inetutils, kmod, jansson, libxslt
2018-07-05 22:30:53 +02:00
, python3Packages, docbook_xsl, openconnect, curl, autoreconfHook }:
2018-03-07 06:09:48 +01:00
let
2018-07-05 22:30:53 +02:00
pname = "NetworkManager";
2018-03-07 06:09:48 +01:00
in stdenv.mkDerivation rec {
2018-07-05 22:30:53 +02:00
name = "network-manager-${version}";
2018-11-22 20:49:07 +01:00
version = "1.14.4";
src = fetchurl {
2018-07-05 22:30:53 +02:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2018-11-22 20:49:07 +01:00
sha256 = "064cgj9za0kzarks0lrv0qw2ysdphb5l97iw0c964bfiqzjfv8rm";
};
2016-11-15 14:15:04 +01:00
outputs = [ "out" "dev" ];
2017-04-04 14:16:59 +02:00
postPatch = ''
patchShebangs ./tools
'';
2012-06-16 21:09:30 +02:00
preConfigure = ''
substituteInPlace configure --replace /usr/bin/uname ${coreutils}/bin/uname
substituteInPlace configure --replace /usr/bin/file ${file}/bin/file
2017-09-14 15:53:39 +02:00
# Fixes: error: po/Makefile.in.in was not created by intltoolize.
intltoolize --automake --copy --force
2012-06-16 21:09:30 +02: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 17:45:41 +02: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 17:45:41 +02:00
"--with-pppd=${ppp}/bin/pppd"
"--with-iptables=${iptables}/bin/iptables"
# to enable link-local connections
"--with-udev-dir=${placeholder "out"}/lib/udev"
"--with-resolvconf=${openresolv}/sbin/resolvconf"
"--sysconfdir=/etc" "--localstatedir=/var"
"--with-dbus-sys-dir=${placeholder "out"}/etc/dbus-1/system.d"
2013-01-03 13:03:50 +01: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 15:53:39 +02:00
"--disable-gtk-doc"
2018-07-05 22:30:53 +02:00
"--with-libnm-glib" # legacy library, TODO: remove
"--disable-tests"
];
2017-04-04 14:16:59 +02:00
patches = [
2018-07-05 22:30:53 +02:00
(substituteAll {
src = ./fix-paths.patch;
2018-12-22 00:58:48 +01:00
inherit inetutils kmod openconnect ethtool coreutils dbus;
inherit (stdenv) shell;
2018-07-05 22:30:53 +02:00
})
2017-04-04 14:16:59 +02:00
];
2018-07-05 22:30:53 +02:00
buildInputs = [
systemd libuuid polkit ppp libndp curl
bluez5 dnsmasq gobject-introspection modemmanager readline newt libsoup jansson
2018-07-05 22:30:53 +02:00
];
propagatedBuildInputs = [ dbus-glib gnutls libgcrypt python3Packages.pygobject3 ];
2017-09-14 15:53:39 +02:00
nativeBuildInputs = [ autoreconfHook intltool pkgconfig libxslt docbook_xsl ];
doCheck = false; # requires /sys, the net
installFlags = [
"sysconfdir=${placeholder "out"}/etc"
"localstatedir=${placeholder "out"}/var"
"runstatedir=${placeholder "out"}/var/run"
];
2016-06-22 02:40:18 +02:00
postInstall = ''
mkdir -p $out/lib/NetworkManager
2016-06-22 02:40:18 +02: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 02:40:18 +02:00
# rename to network-manager to be in style
2017-04-04 14:16:59 +02:00
mv $out/etc/systemd/system/NetworkManager.service $out/etc/systemd/system/network-manager.service
2016-06-22 02:40:18 +02: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 21:09:30 +02:00
2018-03-07 06:09:48 +01:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "networkmanager";
};
};
meta = with stdenv.lib; {
2018-07-05 22:30:53 +02:00
homepage = https://wiki.gnome.org/Projects/NetworkManager;
description = "Network configuration and management tool";
2018-07-05 22:30:53 +02:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ phreedom rickynils domenkozar obadz ];
2018-07-05 22:30:53 +02:00
platforms = platforms.linux;
};
}