2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, substituteAll, intltool, pkg-config, fetchpatch, dbus
|
2019-04-20 04:26:57 +01:00
|
|
|
, gnome3, systemd, libuuid, polkit, gnutls, ppp, dhcp, iptables, python3, vala
|
|
|
|
, libgcrypt, dnsmasq, bluez5, readline, libselinux, audit
|
2018-12-02 11:41:15 +00:00
|
|
|
, gobject-introspection, modemmanager, openresolv, libndp, newt, libsoup
|
2019-06-16 20:59:06 +01:00
|
|
|
, ethtool, gnused, iputils, kmod, jansson, gtk-doc, libxslt
|
2019-04-20 04:26:57 +01:00
|
|
|
, docbook_xsl, docbook_xml_dtd_412, docbook_xml_dtd_42, docbook_xml_dtd_43
|
2019-12-23 03:02:09 +00:00
|
|
|
, openconnect, curl, meson, ninja, libpsl, mobile-broadband-provider-info, runtimeShell }:
|
2011-01-03 18:01:10 +00:00
|
|
|
|
2018-03-07 05:09:48 +00:00
|
|
|
let
|
2019-04-20 04:26:57 +01:00
|
|
|
pythonForDocs = python3.withPackages (pkgs: with pkgs; [ pygobject3 ]);
|
2018-03-07 05:09:48 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "network-manager";
|
2020-07-14 13:01:24 +01:00
|
|
|
version = "1.26.0";
|
2011-01-03 18:01:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 09:19:50 +00:00
|
|
|
url = "mirror://gnome/sources/NetworkManager/${lib.versions.majorMinor version}/NetworkManager-${version}.tar.xz";
|
2020-07-14 13:01:24 +01:00
|
|
|
sha256 = "0isdqwp58d7r92sqsk7l2vlqwy518n8b7c7z94jk9gc1bdmjf8sj";
|
2011-01-03 18:01:10 +00:00
|
|
|
};
|
|
|
|
|
2019-04-20 04:26:57 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" "man" "doc" ];
|
2012-06-16 20:09:30 +01:00
|
|
|
|
2011-09-10 20:23:26 +01: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-20 04:26:57 +01:00
|
|
|
mesonFlags = [
|
|
|
|
"-Ddhclient=${dhcp}/bin/dhclient"
|
|
|
|
"-Ddnsmasq=${dnsmasq}/bin/dnsmasq"
|
2011-09-10 20:23:26 +01:00
|
|
|
# Upstream prefers dhclient, so don't add dhcpcd to the closure
|
2019-04-20 04:26:57 +01:00
|
|
|
"-Ddhcpcd=no"
|
2019-04-27 01:22:16 +01:00
|
|
|
"-Ddhcpcanon=no"
|
2019-04-20 04:26:57 +01:00
|
|
|
"-Dpppd=${ppp}/bin/pppd"
|
|
|
|
"-Diptables=${iptables}/bin/iptables"
|
2018-12-22 20:22:20 +00:00
|
|
|
# to enable link-local connections
|
2019-04-20 04:26:57 +01:00
|
|
|
"-Dudev_dir=${placeholder "out"}/lib/udev"
|
|
|
|
"-Dresolvconf=${openresolv}/bin/resolvconf"
|
2019-09-14 00:02:38 +01:00
|
|
|
"-Ddbus_conf_dir=${placeholder "out"}/share/dbus-1/system.d"
|
2019-04-20 04:26:57 +01: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"
|
2019-04-23 04:12:53 +01:00
|
|
|
# Allow using iwd when configured to do so
|
|
|
|
"-Diwd=true"
|
2019-04-27 01:53:27 +01:00
|
|
|
"-Dlibaudit=yes-disabled-by-default"
|
2020-07-14 13:01:24 +01:00
|
|
|
# We don't use firewalld in NixOS
|
|
|
|
"-Dfirewalld_zone=false"
|
2014-02-13 17:03:06 +00:00
|
|
|
];
|
2011-09-10 20:23:26 +01:00
|
|
|
|
2017-04-04 13:16:59 +01:00
|
|
|
patches = [
|
2018-07-05 21:30:53 +01:00
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
2020-05-08 19:18:54 +01:00
|
|
|
inherit iputils kmod openconnect ethtool gnused systemd polkit;
|
2019-12-23 03:02:09 +00:00
|
|
|
inherit runtimeShell;
|
2018-07-05 21:30:53 +01:00
|
|
|
})
|
|
|
|
|
2019-04-20 04:26:57 +01: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
|
2020-09-21 12:49:40 +01:00
|
|
|
|
|
|
|
# Fix build
|
|
|
|
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/620
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.freedesktop.org/NetworkManager/NetworkManager/commit/54e25f23f53af889703dfc50d51a8afeeea8a439.patch";
|
|
|
|
sha256 = "oy/AZhOC15anWeIMYJfDBcITqJ7CiU715he68XvPRxk=";
|
|
|
|
})
|
2017-04-04 13:16:59 +01:00
|
|
|
];
|
2016-10-16 19:29:18 +01:00
|
|
|
|
2018-07-05 21:30:53 +01:00
|
|
|
buildInputs = [
|
2019-12-23 03:02:09 +00:00
|
|
|
systemd libselinux audit libpsl libuuid polkit ppp libndp curl mobile-broadband-provider-info
|
2018-12-02 11:41:15 +00:00
|
|
|
bluez5 dnsmasq gobject-introspection modemmanager readline newt libsoup jansson
|
2018-07-05 21:30:53 +01:00
|
|
|
];
|
2011-09-10 20:23:26 +01:00
|
|
|
|
2019-09-14 00:02:38 +01:00
|
|
|
propagatedBuildInputs = [ gnutls libgcrypt ];
|
2011-09-14 16:50:01 +01:00
|
|
|
|
2019-04-20 04:26:57 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:51:22 +00:00
|
|
|
meson ninja intltool pkg-config
|
2019-09-14 00:02:38 +01:00
|
|
|
vala gobject-introspection dbus
|
2019-04-20 04:26:57 +01:00
|
|
|
# Docs
|
|
|
|
gtk-doc libxslt docbook_xsl docbook_xml_dtd_412 docbook_xml_dtd_42 docbook_xml_dtd_43 pythonForDocs
|
|
|
|
];
|
2011-09-13 20:27:41 +01:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # requires /sys, the net
|
|
|
|
|
2019-04-20 04:26:57 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs ./tools
|
|
|
|
patchShebangs libnm/generate-setting-docs.py
|
2019-05-04 04:47:04 +01:00
|
|
|
'';
|
2014-02-12 11:29:18 +00:00
|
|
|
|
2019-05-04 04:47:04 +01: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-20 04:26:57 +01:00
|
|
|
'';
|
2013-10-03 13:45:25 +01:00
|
|
|
|
2018-03-07 05:09:48 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "networkmanager";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://wiki.gnome.org/Projects/NetworkManager";
|
2012-12-12 15:26:03 +00:00
|
|
|
description = "Network configuration and management tool";
|
2018-07-05 21:30:53 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2019-10-31 15:29:14 +00:00
|
|
|
maintainers = with maintainers; [ phreedom domenkozar obadz worldofpeace ];
|
2018-07-05 21:30:53 +01:00
|
|
|
platforms = platforms.linux;
|
2011-01-03 18:01:10 +00:00
|
|
|
};
|
2011-01-03 19:10:01 +00:00
|
|
|
}
|