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

96 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchgit
, fetchpatch
, autoreconfHook
, pkgconfig
, ell
, coreutils
, docutils
, readline
2020-02-13 02:08:21 +01:00
, openssl
, python3Packages
}:
2017-04-23 23:12:21 +02:00
stdenv.mkDerivation rec {
pname = "iwd";
2020-11-30 22:08:13 +01:00
version = "1.10";
2017-04-23 23:12:21 +02:00
src = fetchgit {
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
2018-03-07 19:05:08 +01:00
rev = version;
2020-11-30 22:08:13 +01:00
sha256 = "0gzpdgfwzlqj2n3amf2zhi2hlpa412878yphgx79y6b5gn1y1lm2";
2017-04-23 23:12:21 +02:00
};
outputs = [ "out" "man" ]
2021-01-15 15:45:37 +01:00
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "test";
nativeBuildInputs = [
autoreconfHook
docutils
2018-11-10 18:08:23 +01:00
pkgconfig
python3Packages.wrapPython
];
buildInputs = [
ell
python3Packages.python
readline
];
2018-03-07 19:05:08 +01:00
2020-02-13 02:08:21 +01:00
checkInputs = [ openssl ];
# wrapPython wraps the scripts in $test. They pull in gobject-introspection,
# which doesn't cross-compile.
2021-01-15 15:45:37 +01:00
pythonPath = lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [
python3Packages.dbus-python
python3Packages.pygobject3
];
2017-04-23 23:12:21 +02: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 02:20:14 +01:00
"--with-systemd-networkdir=${placeholder "out"}/lib/systemd/network/"
2017-04-23 23:12:21 +02:00
];
postUnpack = ''
patchShebangs .
2017-04-23 23:12:21 +02:00
'';
2020-02-13 02:08:21 +01:00
doCheck = true;
postInstall = ''
mkdir -p $out/share
cp -a doc $out/share/
cp -a README AUTHORS TODO $out/share/doc/
2021-01-15 15:45:37 +01:00
'' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
mkdir -p $test/bin
cp -a test/* $test/bin/
'';
2017-04-23 23:12:21 +02:00
preFixup = ''
wrapPythonPrograms
'';
2017-04-23 23:12:21 +02:00
2018-08-25 14:26:52 +02: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 14:26:52 +02:00
'';
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
2017-04-23 23:12:21 +02:00
description = "Wireless daemon for Linux";
license = licenses.lgpl21;
2017-04-23 23:12:21 +02:00
platforms = platforms.linux;
2019-11-18 02:20:14 +01:00
maintainers = with maintainers; [ dtzWill fpletz ];
2017-04-23 23:12:21 +02:00
};
}