summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iwd
diff options
context:
space:
mode:
authorVladyslav Mykhailichenko <dywedir@pm.me>2018-11-10 19:08:23 +0200
committerVladyslav Mykhailichenko <dywedir@pm.me>2018-11-10 19:08:23 +0200
commit7b9632af82369d6f12e95e430910c9a0b2e4d2ed (patch)
tree3c432d1ea134361b48f9f22189c9ced3b124520c /pkgs/os-specific/linux/iwd
parentb6b4f702ff48f9549cdbe5c1e7ea3059b99324a9 (diff)
downloadnixpkgs-7b9632af82369d6f12e95e430910c9a0b2e4d2ed.tar
nixpkgs-7b9632af82369d6f12e95e430910c9a0b2e4d2ed.tar.gz
nixpkgs-7b9632af82369d6f12e95e430910c9a0b2e4d2ed.tar.bz2
nixpkgs-7b9632af82369d6f12e95e430910c9a0b2e4d2ed.tar.lz
nixpkgs-7b9632af82369d6f12e95e430910c9a0b2e4d2ed.tar.xz
nixpkgs-7b9632af82369d6f12e95e430910c9a0b2e4d2ed.tar.zst
nixpkgs-7b9632af82369d6f12e95e430910c9a0b2e4d2ed.zip
iwd: 0.9 -> 0.11
Diffstat (limited to 'pkgs/os-specific/linux/iwd')
-rw-r--r--pkgs/os-specific/linux/iwd/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/iwd/default.nix b/pkgs/os-specific/linux/iwd/default.nix
index f30eac588a2..762b46bb552 100644
--- a/pkgs/os-specific/linux/iwd/default.nix
+++ b/pkgs/os-specific/linux/iwd/default.nix
@@ -1,23 +1,24 @@
-{ stdenv, fetchgit, autoreconfHook, coreutils, readline, python3Packages }:
+{ stdenv, fetchgit, autoreconfHook, pkgconfig, coreutils, readline, python3Packages }:
 
 let
   ell = fetchgit {
      url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
-     rev = "0.11";
-     sha256 = "0nifa5w6fxy7cagyas2a0zhcppi83yrcsnnp70ls2rc90x4r1ip8";
+     rev = "0.14";
+     sha256 = "13jlmdk47pscmfs3c12awfwr3m6ka4fh6fyr9cl1bmqdpwqmmmk6";
   };
 in stdenv.mkDerivation rec {
   name = "iwd-${version}";
-  version = "0.9";
+  version = "0.11";
 
   src = fetchgit {
     url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
     rev = version;
-    sha256 = "1l1jbwsshjbz32s4rf0zfcn3fd16si4y9qa0zaxp00bfzflnpcd4";
+    sha256 = "0q79rdj3h16xdf0g2jdsvb2141z36z89vgzq0qn31pxzhgxdgf7j";
   };
 
   nativeBuildInputs = [
     autoreconfHook
+    pkgconfig
     python3Packages.wrapPython
   ];