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

97 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchgit
, autoreconfHook
, pkg-config
, ell
, coreutils
, docutils
, readline
2020-02-13 01:08:21 +00:00
, openssl
, python3Packages
}:
2017-04-23 21:12:21 +00:00
stdenv.mkDerivation rec {
pname = "iwd";
2021-05-13 19:51:29 +00:00
version = "1.14";
2017-04-23 21:12:21 +00:00
src = fetchgit {
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
2018-03-07 18:05:08 +00:00
rev = version;
2021-05-13 19:51:29 +00:00
sha256 = "sha256-uGe4TO1/bs8k2z3wOJqaZgT6u6yX/7wx4HMSS2hN4XE=";
2017-04-23 21:12:21 +00:00
};
outputs = [ "out" "man" ]
2021-01-15 14:45:37 +00:00
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "test";
nativeBuildInputs = [
autoreconfHook
docutils
pkg-config
python3Packages.wrapPython
];
buildInputs = [
ell
python3Packages.python
readline
];
2018-03-07 18:05:08 +00:00
2020-02-13 01:08:21 +00:00
checkInputs = [ openssl ];
# 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) [
python3Packages.dbus-python
python3Packages.pygobject3
];
2017-04-23 21:12:21 +00: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 01:20:14 +00:00
"--with-systemd-networkdir=${placeholder "out"}/lib/systemd/network/"
2017-04-23 21:12:21 +00:00
];
postUnpack = ''
2021-05-13 19:51:29 +00:00
mkdir -p iwd/ell
ln -s ${ell.src}/ell/useful.h iwd/ell/useful.h
patchShebangs .
2017-04-23 21:12:21 +00:00
'';
2020-02-13 01:08:21 +00:00
doCheck = true;
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) ''
mkdir -p $test/bin
cp -a test/* $test/bin/
'';
2017-04-23 21:12:21 +00:00
preFixup = ''
wrapPythonPrograms
'';
2017-04-23 21:12:21 +00:00
2018-08-25 12:26:52 +00: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 12:26:52 +00:00
'';
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
2017-04-23 21:12:21 +00:00
description = "Wireless daemon for Linux";
2021-03-20 14:03:11 +00:00
license = licenses.lgpl21Plus;
2017-04-23 21:12:21 +00:00
platforms = platforms.linux;
2019-11-18 01:20:14 +00:00
maintainers = with maintainers; [ dtzWill fpletz ];
2017-04-23 21:12:21 +00:00
};
}