2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-09-04 01:38:17 +01:00
|
|
|
, fetchgit
|
|
|
|
, autoreconfHook
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-09-04 01:38:17 +01:00
|
|
|
, ell
|
|
|
|
, coreutils
|
2019-10-11 21:27:02 +01:00
|
|
|
, docutils
|
2019-09-04 01:38:17 +01:00
|
|
|
, readline
|
2020-02-13 01:08:21 +00:00
|
|
|
, openssl
|
2019-09-04 01:38:17 +01:00
|
|
|
, python3Packages
|
|
|
|
}:
|
2017-04-23 22:12:21 +01:00
|
|
|
|
2019-03-21 15:53:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "iwd";
|
2021-11-22 11:42:41 +00:00
|
|
|
version = "1.20";
|
2017-04-23 22:12:21 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
|
2018-03-07 18:05:08 +00:00
|
|
|
rev = version;
|
2021-11-22 11:42:41 +00:00
|
|
|
sha256 = "sha256-GcqmMqrZSgvSrsY8FJbPynNWTzSi5A6kmyq+xJ+2i3Y=";
|
2017-04-23 22:12:21 +01:00
|
|
|
};
|
|
|
|
|
2020-12-27 12:45:46 +00:00
|
|
|
outputs = [ "out" "man" ]
|
2021-01-15 14:45:37 +00:00
|
|
|
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "test";
|
2020-07-05 01:05:41 +01:00
|
|
|
|
2017-12-17 12:41:06 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
2019-10-11 21:27:02 +01:00
|
|
|
docutils
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
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
|
2017-12-17 12:41:06 +00:00
|
|
|
];
|
2018-03-07 18:05:08 +00:00
|
|
|
|
2020-02-13 01:08:21 +00:00
|
|
|
checkInputs = [ openssl ];
|
|
|
|
|
2020-12-27 12:45:46 +00:00
|
|
|
# wrapPython wraps the scripts in $test. They pull in gobject-introspection,
|
|
|
|
# which doesn't cross-compile.
|
2021-01-15 14:45:37 +00:00
|
|
|
pythonPath = lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [
|
2017-12-17 12:41:06 +00:00
|
|
|
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 = ''
|
2021-05-13 20:51:29 +01:00
|
|
|
mkdir -p iwd/ell
|
|
|
|
ln -s ${ell.src}/ell/useful.h iwd/ell/useful.h
|
2017-12-17 12:41:06 +00:00
|
|
|
patchShebangs .
|
2017-04-23 22:12:21 +01:00
|
|
|
'';
|
|
|
|
|
2020-02-13 01:08:21 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2017-12-17 12:41:06 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share
|
|
|
|
cp -a doc $out/share/
|
|
|
|
cp -a README AUTHORS TODO $out/share/doc/
|
2021-01-15 14:45:37 +00:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
2020-12-27 12:45:46 +00:00
|
|
|
mkdir -p $test/bin
|
|
|
|
cp -a test/* $test/bin/
|
2017-12-17 12:41:06 +00:00
|
|
|
'';
|
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;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
|
2017-04-23 22:12:21 +01:00
|
|
|
description = "Wireless daemon for Linux";
|
2021-03-20 14:03:11 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2017-04-23 22:12:21 +01:00
|
|
|
platforms = platforms.linux;
|
2021-07-18 20:23:26 +01:00
|
|
|
maintainers = with maintainers; [ dtzWill fpletz maxeaubrey ];
|
2017-04-23 22:12:21 +01:00
|
|
|
};
|
|
|
|
}
|