iwd: 0.9 -> 0.11

This commit is contained in:
Vladyslav Mykhailichenko 2018-11-10 19:08:23 +02:00
parent b6b4f702ff
commit 7b9632af82
No known key found for this signature in database
GPG key ID: BE743C5DD7703515

View file

@ -1,23 +1,24 @@
{ stdenv, fetchgit, autoreconfHook, coreutils, readline, python3Packages }: { stdenv, fetchgit, autoreconfHook, pkgconfig, coreutils, readline, python3Packages }:
let let
ell = fetchgit { ell = fetchgit {
url = https://git.kernel.org/pub/scm/libs/ell/ell.git; url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
rev = "0.11"; rev = "0.14";
sha256 = "0nifa5w6fxy7cagyas2a0zhcppi83yrcsnnp70ls2rc90x4r1ip8"; sha256 = "13jlmdk47pscmfs3c12awfwr3m6ka4fh6fyr9cl1bmqdpwqmmmk6";
}; };
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
name = "iwd-${version}"; name = "iwd-${version}";
version = "0.9"; version = "0.11";
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 = "1l1jbwsshjbz32s4rf0zfcn3fd16si4y9qa0zaxp00bfzflnpcd4"; sha256 = "0q79rdj3h16xdf0g2jdsvb2141z36z89vgzq0qn31pxzhgxdgf7j";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
autoreconfHook autoreconfHook
pkgconfig
python3Packages.wrapPython python3Packages.wrapPython
]; ];