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