nixpkgs/pkgs/os-specific/linux/iwd/default.nix

96 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchgit
, fetchpatch
, autoreconfHook
, pkg-config
, ell
, coreutils
, docutils
, readline
2020-02-13 04:08:21 +03:00
, openssl
, python3Packages
}:
2017-04-24 00:12:21 +03:00
stdenv.mkDerivation rec {
pname = "iwd";
2021-01-21 07:50:51 +03:00
version = "1.11";
2017-04-24 00:12:21 +03:00
src = fetchgit {
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
2018-03-07 21:05:08 +03:00
rev = version;
2021-01-21 07:50:51 +03:00
sha256 = "0wnyg0f1swi7gvvgf5kzbiz44g2wscf5d5bp320iwyfwnlbqb1bn";
2017-04-24 00:12:21 +03:00
};
outputs = [ "out" "man" ]
2021-01-15 17:45:37 +03:00
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "test";
nativeBuildInputs = [
autoreconfHook
docutils
pkg-config
python3Packages.wrapPython
];
buildInputs = [
ell
python3Packages.python
readline
];
2018-03-07 21:05:08 +03:00
2020-02-13 04:08:21 +03:00
checkInputs = [ openssl ];
# wrapPython wraps the scripts in $test. They pull in gobject-introspection,
# which doesn't cross-compile.
2021-01-15 17:45:37 +03:00
pythonPath = lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [
python3Packages.dbus-python
python3Packages.pygobject3
];
2017-04-24 00:12:21 +03:00
configureFlags = [
"--enable-external-ell"
"--enable-wired"
"--localstatedir=/var/"
"--with-dbus-busdir=${placeholder "out"}/share/dbus-1/system-services/"
"--with-dbus-datadir=${placeholder "out"}/share/"
"--with-systemd-modloaddir=${placeholder "out"}/etc/modules-load.d/" # maybe
"--with-systemd-unitdir=${placeholder "out"}/lib/systemd/system/"
2019-11-18 04:20:14 +03:00
"--with-systemd-networkdir=${placeholder "out"}/lib/systemd/network/"
2017-04-24 00:12:21 +03:00
];
postUnpack = ''
patchShebangs .
2017-04-24 00:12:21 +03:00
'';
2020-02-13 04:08:21 +03:00
doCheck = true;
postInstall = ''
mkdir -p $out/share
cp -a doc $out/share/
cp -a README AUTHORS TODO $out/share/doc/
2021-01-15 17:45:37 +03:00
'' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
mkdir -p $test/bin
cp -a test/* $test/bin/
'';
2017-04-24 00:12:21 +03:00
preFixup = ''
wrapPythonPrograms
'';
2017-04-24 00:12:21 +03:00
2018-08-25 15:26:52 +03:00
postFixup = ''
substituteInPlace $out/share/dbus-1/system-services/net.connman.ead.service \
--replace /bin/false ${coreutils}/bin/false
substituteInPlace $out/share/dbus-1/system-services/net.connman.iwd.service \
--replace /bin/false ${coreutils}/bin/false
2018-08-25 15:26:52 +03:00
'';
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
2017-04-24 00:12:21 +03:00
description = "Wireless daemon for Linux";
license = licenses.lgpl21;
2017-04-24 00:12:21 +03:00
platforms = platforms.linux;
2019-11-18 04:20:14 +03:00
maintainers = with maintainers; [ dtzWill fpletz ];
2017-04-24 00:12:21 +03:00
};
}