summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iwd
diff options
context:
space:
mode:
authorJohannes Frankenau <johannes@frankenau.net>2018-11-15 23:10:00 +0100
committerJohannes Frankenau <johannes@frankenau.net>2018-12-03 11:52:28 +0100
commitde23f0b9228af00aaa2ba29cab1ee0e863648b16 (patch)
treee1a9075a6dd613b2a8f3b9aa0fe372231ef7619c /pkgs/os-specific/linux/iwd
parent31f67bed5b4f07ebd6179cbf612ac8707b09fd10 (diff)
downloadnixpkgs-de23f0b9228af00aaa2ba29cab1ee0e863648b16.tar
nixpkgs-de23f0b9228af00aaa2ba29cab1ee0e863648b16.tar.gz
nixpkgs-de23f0b9228af00aaa2ba29cab1ee0e863648b16.tar.bz2
nixpkgs-de23f0b9228af00aaa2ba29cab1ee0e863648b16.tar.lz
nixpkgs-de23f0b9228af00aaa2ba29cab1ee0e863648b16.tar.xz
nixpkgs-de23f0b9228af00aaa2ba29cab1ee0e863648b16.tar.zst
nixpkgs-de23f0b9228af00aaa2ba29cab1ee0e863648b16.zip
iwd: 0.11 -> 0.12
Diffstat (limited to 'pkgs/os-specific/linux/iwd')
-rw-r--r--pkgs/os-specific/linux/iwd/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/iwd/default.nix b/pkgs/os-specific/linux/iwd/default.nix
index a7a78be6a10..acf28a1bca7 100644
--- a/pkgs/os-specific/linux/iwd/default.nix
+++ b/pkgs/os-specific/linux/iwd/default.nix
@@ -3,17 +3,17 @@
 let
   ell = fetchgit {
      url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
-     rev = "0.14";
-     sha256 = "13jlmdk47pscmfs3c12awfwr3m6ka4fh6fyr9cl1bmqdpwqmmmk6";
+     rev = "0.15";
+     sha256 = "1jwk5gxcs964ddca9asw6fvc4h9q8d2x1y3linfi11b5vf30bghn";
   };
 in stdenv.mkDerivation rec {
   name = "iwd-${version}";
-  version = "0.11";
+  version = "0.12";
 
   src = fetchgit {
     url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
     rev = version;
-    sha256 = "0q79rdj3h16xdf0g2jdsvb2141z36z89vgzq0qn31pxzhgxdgf7j";
+    sha256 = "156zq3zqa2vfmvy3yv9lng23mhrhlgwh0p2x3fcn10nkks9q89pn";
   };
 
   nativeBuildInputs = [
@@ -40,6 +40,7 @@ in stdenv.mkDerivation rec {
     "--with-dbus-busdir=$(out)/usr/share/dbus-1/system-services/"
     "--with-systemd-unitdir=$(out)/lib/systemd/system/"
     "--localstatedir=/var/"
+    "--enable-wired"
   ];
 
   postUnpack = ''
@@ -59,6 +60,8 @@ in stdenv.mkDerivation rec {
   '';
 
   postFixup = ''
+    substituteInPlace $out/usr/share/dbus-1/system-services/net.connman.ead.service \
+                      --replace /bin/false ${coreutils}/bin/false
     substituteInPlace $out/usr/share/dbus-1/system-services/net.connman.iwd.service \
                       --replace /bin/false ${coreutils}/bin/false
   '';