summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iwd
diff options
context:
space:
mode:
authorMaxine Aubrey <maxeaubrey@gmail.com>2021-05-13 21:51:29 +0200
committerMaxine Aubrey <maxeaubrey@gmail.com>2021-05-13 21:51:29 +0200
commitc018ef9f564e4e7b826673875fc3d255686f318d (patch)
tree2070247b32c87dab2330e3bcebefd5f49da64cca /pkgs/os-specific/linux/iwd
parente3760e234b41049f31041d90246310c0a0505310 (diff)
downloadnixpkgs-c018ef9f564e4e7b826673875fc3d255686f318d.tar
nixpkgs-c018ef9f564e4e7b826673875fc3d255686f318d.tar.gz
nixpkgs-c018ef9f564e4e7b826673875fc3d255686f318d.tar.bz2
nixpkgs-c018ef9f564e4e7b826673875fc3d255686f318d.tar.lz
nixpkgs-c018ef9f564e4e7b826673875fc3d255686f318d.tar.xz
nixpkgs-c018ef9f564e4e7b826673875fc3d255686f318d.tar.zst
nixpkgs-c018ef9f564e4e7b826673875fc3d255686f318d.zip
iwd: 1.12 -> 1.14
Diffstat (limited to 'pkgs/os-specific/linux/iwd')
-rw-r--r--pkgs/os-specific/linux/iwd/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/iwd/default.nix b/pkgs/os-specific/linux/iwd/default.nix
index 6e703feb992..63692149f3d 100644
--- a/pkgs/os-specific/linux/iwd/default.nix
+++ b/pkgs/os-specific/linux/iwd/default.nix
@@ -12,12 +12,12 @@
 
 stdenv.mkDerivation rec {
   pname = "iwd";
-  version = "1.12";
+  version = "1.14";
 
   src = fetchgit {
     url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
     rev = version;
-    sha256 = "sha256-o3Vc5p/AFZwbkEWJZzO6wWAJ/BmSh0eKxdnjm5B9BFU=";
+    sha256 = "sha256-uGe4TO1/bs8k2z3wOJqaZgT6u6yX/7wx4HMSS2hN4XE=";
   };
 
   outputs = [ "out" "man" ]
@@ -57,6 +57,8 @@ stdenv.mkDerivation rec {
   ];
 
   postUnpack = ''
+    mkdir -p iwd/ell
+    ln -s ${ell.src}/ell/useful.h iwd/ell/useful.h
     patchShebangs .
   '';