mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
commit
ef7f1c5e03
@ -26,7 +26,7 @@ in {
|
||||
wants = [ "network.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
||||
serviceConfig.ExecStart = "${pkgs.iwd}/bin/iwd";
|
||||
serviceConfig.ExecStart = "${pkgs.iwd}/libexec/iwd";
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user