iwd: 2017-12-14 -> 0.1

This commit is contained in:
Vladyslav M 2018-03-07 20:05:08 +02:00
parent 41939f29a1
commit 2a147bea02
2 changed files with 10 additions and 8 deletions

View File

@ -26,7 +26,7 @@ in {
wants = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig.ExecStart = "${pkgs.iwd}/bin/iwd";
serviceConfig.ExecStart = "${pkgs.iwd}/libexec/iwd";
};
};

View File

@ -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 = ''