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

71 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, autoreconfHook, pkgconfig, ell, coreutils, readline, python3Packages }:
2017-04-23 21:12:21 +00:00
stdenv.mkDerivation rec {
pname = "iwd";
version = "0.19";
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;
sha256 = "0848r06bnx5k6wlmy425hljc3f03x9xx0r83vdvf630jryc9llmz";
2017-04-23 21:12:21 +00:00
};
nativeBuildInputs = [
autoreconfHook
2018-11-10 17:08:23 +00:00
pkgconfig
python3Packages.wrapPython
];
buildInputs = [
ell
readline
python3Packages.python
];
2018-03-07 18:05:08 +00:00
pythonPath = [
python3Packages.dbus-python
python3Packages.pygobject3
];
2017-04-23 21:12:21 +00:00
configureFlags = [
"--with-dbus-datadir=${placeholder "out"}/etc/"
"--with-dbus-busdir=${placeholder "out"}/share/dbus-1/system-services/"
"--with-systemd-unitdir=${placeholder "out"}/lib/systemd/system/"
"--with-systemd-modloaddir=${placeholder "out"}/etc/modules-load.d/" # maybe
2018-08-25 12:26:52 +00:00
"--localstatedir=/var/"
2018-11-15 22:10:00 +00:00
"--enable-wired"
"--enable-external-ell"
2017-04-23 21:12:21 +00:00
];
postUnpack = ''
patchShebangs .
2017-04-23 21:12:21 +00:00
'';
postInstall = ''
cp -a test/* $out/bin/
mkdir -p $out/share
cp -a doc $out/share/
cp -a README AUTHORS TODO $out/share/doc/
'';
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 \
2018-11-15 22:10:00 +00:00
--replace /bin/false ${coreutils}/bin/false
substituteInPlace $out/share/dbus-1/system-services/net.connman.iwd.service \
2018-08-25 12:26:52 +00:00
--replace /bin/false ${coreutils}/bin/false
'';
2017-04-23 21:12:21 +00:00
meta = with stdenv.lib; {
homepage = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
description = "Wireless daemon for Linux";
license = licenses.lgpl21;
2017-04-23 21:12:21 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.mic92 ];
};
}