2019-09-04 01:38:17 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchgit
|
|
|
|
, fetchpatch
|
|
|
|
, autoreconfHook
|
|
|
|
, pkgconfig
|
|
|
|
, ell
|
|
|
|
, coreutils
|
2019-10-11 21:27:02 +01:00
|
|
|
, docutils
|
2019-09-04 01:38:17 +01:00
|
|
|
, readline
|
|
|
|
, python3Packages
|
2019-11-18 01:20:14 +00:00
|
|
|
, systemd
|
2019-09-04 01:38:17 +01:00
|
|
|
}:
|
2017-04-23 22:12:21 +01:00
|
|
|
|
2019-03-21 15:53:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "iwd";
|
2019-12-27 15:29:57 +00:00
|
|
|
version = "1.4";
|
2017-04-23 22:12:21 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
|
2018-03-07 18:05:08 +00:00
|
|
|
rev = version;
|
2019-12-27 15:29:57 +00:00
|
|
|
sha256 = "13sig2lbiyi4x74ag37gvdqx5w18w6hmq9hc1ir4a1cqqf50v61v";
|
2017-04-23 22:12:21 +01:00
|
|
|
};
|
|
|
|
|
2017-12-17 12:41:06 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
2019-10-11 21:27:02 +01:00
|
|
|
docutils
|
2018-11-10 17:08:23 +00:00
|
|
|
pkgconfig
|
2017-12-17 12:41:06 +00:00
|
|
|
python3Packages.wrapPython
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2019-03-21 15:53:06 +00:00
|
|
|
ell
|
2017-12-17 12:41:06 +00:00
|
|
|
python3Packages.python
|
2019-09-04 01:38:17 +01:00
|
|
|
readline
|
2019-11-18 01:20:14 +00:00
|
|
|
systemd
|
2017-12-17 12:41:06 +00:00
|
|
|
];
|
2018-03-07 18:05:08 +00:00
|
|
|
|
2017-12-17 12:41:06 +00:00
|
|
|
pythonPath = [
|
|
|
|
python3Packages.dbus-python
|
|
|
|
python3Packages.pygobject3
|
|
|
|
];
|
|
|
|
|
2017-04-23 22:12:21 +01:00
|
|
|
configureFlags = [
|
2019-09-04 01:38:17 +01:00
|
|
|
"--enable-external-ell"
|
|
|
|
"--enable-wired"
|
|
|
|
"--localstatedir=/var/"
|
2019-01-29 03:41:23 +00:00
|
|
|
"--with-dbus-busdir=${placeholder "out"}/share/dbus-1/system-services/"
|
2019-09-04 01:38:17 +01:00
|
|
|
"--with-dbus-datadir=${placeholder "out"}/share/"
|
2019-03-21 15:53:06 +00:00
|
|
|
"--with-systemd-modloaddir=${placeholder "out"}/etc/modules-load.d/" # maybe
|
2019-09-04 01:38:17 +01:00
|
|
|
"--with-systemd-unitdir=${placeholder "out"}/lib/systemd/system/"
|
2019-11-18 01:20:14 +00:00
|
|
|
"--with-systemd-networkdir=${placeholder "out"}/lib/systemd/network/"
|
2017-04-23 22:12:21 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postUnpack = ''
|
2017-12-17 12:41:06 +00:00
|
|
|
patchShebangs .
|
2017-04-23 22:12:21 +01:00
|
|
|
'';
|
|
|
|
|
2017-12-17 12:41:06 +00:00
|
|
|
postInstall = ''
|
|
|
|
cp -a test/* $out/bin/
|
|
|
|
mkdir -p $out/share
|
|
|
|
cp -a doc $out/share/
|
|
|
|
cp -a README AUTHORS TODO $out/share/doc/
|
|
|
|
'';
|
2017-04-23 22:12:21 +01:00
|
|
|
|
2017-12-17 12:41:06 +00:00
|
|
|
preFixup = ''
|
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
2017-04-23 22:12:21 +01:00
|
|
|
|
2018-08-25 13:26:52 +01:00
|
|
|
postFixup = ''
|
2019-01-29 03:41:23 +00:00
|
|
|
substituteInPlace $out/share/dbus-1/system-services/net.connman.ead.service \
|
2019-09-04 01:38:17 +01:00
|
|
|
--replace /bin/false ${coreutils}/bin/false
|
2019-01-29 03:41:23 +00:00
|
|
|
substituteInPlace $out/share/dbus-1/system-services/net.connman.iwd.service \
|
2019-09-04 01:38:17 +01:00
|
|
|
--replace /bin/false ${coreutils}/bin/false
|
2018-08-25 13:26:52 +01:00
|
|
|
'';
|
|
|
|
|
2019-09-04 01:38:17 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-04-23 22:12:21 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
|
|
|
|
description = "Wireless daemon for Linux";
|
2017-12-17 12:41:06 +00:00
|
|
|
license = licenses.lgpl21;
|
2017-04-23 22:12:21 +01:00
|
|
|
platforms = platforms.linux;
|
2019-11-18 01:20:14 +00:00
|
|
|
maintainers = with maintainers; [ dtzWill fpletz ];
|
2017-04-23 22:12:21 +01:00
|
|
|
};
|
|
|
|
}
|