iwd: 0.22 -> 1.1

This commit is contained in:
Franz Pletz 2019-11-18 02:20:14 +01:00
parent bf3bab2b3f
commit 09f1e09954
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -8,16 +8,17 @@
, docutils
, readline
, python3Packages
, systemd
}:
stdenv.mkDerivation rec {
pname = "iwd";
version = "0.22";
version = "1.1";
src = fetchgit {
url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
rev = version;
sha256 = "0mjc08ayq2k7sinqanrlm97dn88dxkqkyk2vqqcx1nqjvwvbpbsp";
sha256 = "1rvsr5i79wpdicghplrxamb4qbkdm5cpgw3mk0rsqzwwj6d6l0vs";
};
nativeBuildInputs = [
@ -31,6 +32,7 @@ stdenv.mkDerivation rec {
ell
python3Packages.python
readline
systemd
];
pythonPath = [
@ -46,6 +48,7 @@ stdenv.mkDerivation rec {
"--with-dbus-datadir=${placeholder "out"}/share/"
"--with-systemd-modloaddir=${placeholder "out"}/etc/modules-load.d/" # maybe
"--with-systemd-unitdir=${placeholder "out"}/lib/systemd/system/"
"--with-systemd-networkdir=${placeholder "out"}/lib/systemd/network/"
];
postUnpack = ''
@ -77,6 +80,6 @@ stdenv.mkDerivation rec {
description = "Wireless daemon for Linux";
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
maintainers = with maintainers; [ dtzWill fpletz ];
};
}