2021-01-16 19:51:22 -08:00
|
|
|
{ lib, stdenv, fetchurl, substituteAll, intltool, pkg-config, fetchpatch, dbus
|
2021-05-07 14:18:14 -07:00
|
|
|
, gnome, systemd, libuuid, polkit, gnutls, ppp, dhcp, iptables, python3, vala
|
2019-04-19 20:26:57 -07:00
|
|
|
, libgcrypt, dnsmasq, bluez5, readline, libselinux, audit
|
2018-12-02 03:41:15 -08:00
|
|
|
, gobject-introspection, modemmanager, openresolv, libndp, newt, libsoup
|
2019-06-16 12:59:06 -07:00
|
|
|
, ethtool, gnused, iputils, kmod, jansson, gtk-doc, libxslt
|
2019-04-19 20:26:57 -07:00
|
|
|
, docbook_xsl, docbook_xml_dtd_412, docbook_xml_dtd_42, docbook_xml_dtd_43
|
2019-12-22 19:02:09 -08:00
|
|
|
, openconnect, curl, meson, ninja, libpsl, mobile-broadband-provider-info, runtimeShell }:
|
2011-01-03 10:01:10 -08:00
|
|
|
|
2018-03-06 21:09:48 -08:00
|
|
|
let
|
2019-04-19 20:26:57 -07:00
|
|
|
pythonForDocs = python3.withPackages (pkgs: with pkgs; [ pygobject3 ]);
|
2018-03-06 21:09:48 -08:00
|
|
|
in stdenv.mkDerivation rec {
|
2021-03-08 07:28:44 -08:00
|
|
|
pname = "networkmanager";
|
2021-07-17 02:47:32 -07:00
|
|
|
version = "1.30.6";
|
2011-01-03 10:01:10 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 01:19:50 -08:00
|
|
|
url = "mirror://gnome/sources/NetworkManager/${lib.versions.majorMinor version}/NetworkManager-${version}.tar.xz";
|
2021-07-17 02:47:32 -07:00
|
|
|
sha256 = "sha256-/p+RYUKjgACYu6ECPdEUCHv1O850zc78/wwnxknBHvI=";
|
2011-01-03 10:01:10 -08:00
|
|
|
};
|
|
|
|
|
2019-04-19 20:26:57 -07:00
|
|
|
outputs = [ "out" "dev" "devdoc" "man" "doc" ];
|
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.
|
2019-04-19 20:26:57 -07:00
|
|
|
mesonFlags = [
|
|
|
|
"-Ddhclient=${dhcp}/bin/dhclient"
|
|
|
|
"-Ddnsmasq=${dnsmasq}/bin/dnsmasq"
|
2011-09-10 12:23:26 -07:00
|
|
|
# Upstream prefers dhclient, so don't add dhcpcd to the closure
|
2019-04-19 20:26:57 -07:00
|
|
|
"-Ddhcpcd=no"
|
2019-04-26 17:22:16 -07:00
|
|
|
"-Ddhcpcanon=no"
|
2019-04-19 20:26:57 -07:00
|
|
|
"-Dpppd=${ppp}/bin/pppd"
|
|
|
|
"-Diptables=${iptables}/bin/iptables"
|
2018-12-22 12:22:20 -08:00
|
|
|
# to enable link-local connections
|
2019-04-19 20:26:57 -07:00
|
|
|
"-Dudev_dir=${placeholder "out"}/lib/udev"
|
|
|
|
"-Dresolvconf=${openresolv}/bin/resolvconf"
|
2019-09-13 16:02:38 -07:00
|
|
|
"-Ddbus_conf_dir=${placeholder "out"}/share/dbus-1/system.d"
|
2019-04-19 20:26:57 -07:00
|
|
|
"-Dsystemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
|
|
|
"-Dkernel_firmware_dir=/run/current-system/firmware"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"-Dcrypto=gnutls"
|
|
|
|
"-Dsession_tracking=systemd"
|
|
|
|
"-Dmodem_manager=true"
|
|
|
|
"-Dnmtui=true"
|
|
|
|
"-Ddocs=true"
|
|
|
|
"-Dtests=no"
|
|
|
|
"-Dqt=false"
|
2021-03-08 04:54:34 -08:00
|
|
|
"-Dpolkit_agent_helper_1=/run/wrappers/bin/polkit-agent-helper-1"
|
2019-04-22 20:12:53 -07:00
|
|
|
# Allow using iwd when configured to do so
|
|
|
|
"-Diwd=true"
|
2019-04-26 17:53:27 -07:00
|
|
|
"-Dlibaudit=yes-disabled-by-default"
|
2020-07-14 05:01:24 -07:00
|
|
|
# We don't use firewalld in NixOS
|
|
|
|
"-Dfirewalld_zone=false"
|
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;
|
2021-03-08 04:54:34 -08:00
|
|
|
inherit iputils kmod openconnect ethtool gnused systemd;
|
2019-12-22 19:02:09 -08:00
|
|
|
inherit runtimeShell;
|
2018-07-05 13:30:53 -07:00
|
|
|
})
|
|
|
|
|
2019-04-19 20:26:57 -07:00
|
|
|
# Meson does not support using different directories during build and
|
|
|
|
# for installation like Autotools did with flags passed to make install.
|
|
|
|
./fix-install-paths.patch
|
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 = [
|
2019-12-22 19:02:09 -08:00
|
|
|
systemd libselinux audit libpsl libuuid polkit ppp libndp curl mobile-broadband-provider-info
|
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
|
|
|
|
2019-09-13 16:02:38 -07:00
|
|
|
propagatedBuildInputs = [ gnutls libgcrypt ];
|
2011-09-14 08:50:01 -07:00
|
|
|
|
2019-04-19 20:26:57 -07:00
|
|
|
nativeBuildInputs = [
|
2021-01-16 19:51:22 -08:00
|
|
|
meson ninja intltool pkg-config
|
2019-09-13 16:02:38 -07:00
|
|
|
vala gobject-introspection dbus
|
2019-04-19 20:26:57 -07:00
|
|
|
# Docs
|
|
|
|
gtk-doc libxslt docbook_xsl docbook_xml_dtd_412 docbook_xml_dtd_42 docbook_xml_dtd_43 pythonForDocs
|
|
|
|
];
|
2011-09-13 12:27:41 -07:00
|
|
|
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # requires /sys, the net
|
|
|
|
|
2019-04-19 20:26:57 -07:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs ./tools
|
|
|
|
patchShebangs libnm/generate-setting-docs.py
|
2019-05-03 20:47:04 -07:00
|
|
|
'';
|
2014-02-12 03:29:18 -08:00
|
|
|
|
2019-05-03 20:47:04 -07:00
|
|
|
preBuild = ''
|
|
|
|
# Our gobject-introspection patches make the shared library paths absolute
|
|
|
|
# in the GIR files. When building docs, the library is not yet installed,
|
|
|
|
# though, so we need to replace the absolute path with a local one during build.
|
|
|
|
# We are using a symlink that will be overridden during installation.
|
|
|
|
mkdir -p ${placeholder "out"}/lib
|
|
|
|
ln -s $PWD/libnm/libnm.so.0 ${placeholder "out"}/lib/libnm.so.0
|
2019-04-19 20:26:57 -07:00
|
|
|
'';
|
2013-10-03 05:45:25 -07:00
|
|
|
|
2018-03-06 21:09:48 -08:00
|
|
|
passthru = {
|
2021-05-07 14:18:14 -07:00
|
|
|
updateScript = gnome.updateScript {
|
2018-03-06 21:09:48 -08:00
|
|
|
packageName = pname;
|
|
|
|
attrPath = "networkmanager";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -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;
|
2021-05-07 06:23:50 -07:00
|
|
|
maintainers = teams.freedesktop.members ++ (with maintainers; [ phreedom 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
|
|
|
}
|