about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iwd
diff options
context:
space:
mode:
authorVladyslav M <dywedir@protonmail.ch>2018-03-07 20:05:08 +0200
committerVladyslav M <dywedir@protonmail.ch>2018-03-07 20:28:12 +0200
commit2a147bea028327410dac064639eddeae96c56914 (patch)
tree9ae3bfa83f033ef6b1cb214bd941b6b15d63717c /pkgs/os-specific/linux/iwd
parent41939f29a128e48b0414a118342c63ae0e887591 (diff)
downloadnixlib-2a147bea028327410dac064639eddeae96c56914.tar
nixlib-2a147bea028327410dac064639eddeae96c56914.tar.gz
nixlib-2a147bea028327410dac064639eddeae96c56914.tar.bz2
nixlib-2a147bea028327410dac064639eddeae96c56914.tar.lz
nixlib-2a147bea028327410dac064639eddeae96c56914.tar.xz
nixlib-2a147bea028327410dac064639eddeae96c56914.tar.zst
nixlib-2a147bea028327410dac064639eddeae96c56914.zip
iwd: 2017-12-14 -> 0.1
Diffstat (limited to 'pkgs/os-specific/linux/iwd')
-rw-r--r--pkgs/os-specific/linux/iwd/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/os-specific/linux/iwd/default.nix b/pkgs/os-specific/linux/iwd/default.nix
index f4f870f16c3b..a1c577d2bb57 100644
--- a/pkgs/os-specific/linux/iwd/default.nix
+++ b/pkgs/os-specific/linux/iwd/default.nix
@@ -3,16 +3,17 @@
 let
   ell = fetchgit {
      url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
-     rev = "8192131685be0f27d6f51b14b78ef93fa7f3c692";
-     sha256 = "1k74qz3w0l4zq8llrxc4p62xy0c0n33f260vy3d14wx5rhvf0544";
+     rev = "0.4";
+     sha256 = "0l203n1jnqa2mcifir8ydxhcvbiwlvk89ailm0lida83l9vdlwpv";
   };
 in stdenv.mkDerivation rec {
-  name = "iwd-unstable-2017-12-14";
+  name = "iwd-${version}";
+  version = "0.1";
 
   src = fetchgit {
     url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
-    rev = "cf3372235c4592ca7366b27548abc4e89a982414";
-    sha256 = "0dg28j919w1v8sqr6jdj12c233rsjzd2jzkcpag1hx2h3g35hnlz";
+    rev = version;
+    sha256 = "1f8c6xvcvqw8z78mskynd2fkghggcl7vfz8vxzvpx0fkqcprn5n0";
   };
 
   nativeBuildInputs = [
@@ -24,7 +25,7 @@ in stdenv.mkDerivation rec {
     readline
     python3Packages.python
   ];
-  
+
   pythonPath = [
     python3Packages.dbus-python
     python3Packages.pygobject3
@@ -33,7 +34,8 @@ in stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   configureFlags = [
-    "--with-dbusconfdir=$(out)/etc/"
+    "--with-dbus-datadir=$(out)/etc/"
+    "--disable-systemd-service"
   ];
 
   postUnpack = ''