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