tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
iwd: 1.17 -> 1.19
Yurii Matsiuk
4 years ago
a61fcbb3
76f89efc
+2
-11
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
iwd
default.nix
+2
-11
pkgs/os-specific/linux/iwd/default.nix
···
8
8
, readline
9
9
, openssl
10
10
, python3Packages
11
11
-
, fetchpatch
12
11
}:
13
12
14
13
stdenv.mkDerivation rec {
15
14
pname = "iwd";
16
16
-
version = "1.17";
15
15
+
version = "1.19";
17
16
18
17
src = fetchgit {
19
18
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
20
19
rev = version;
21
21
-
sha256 = "sha256-uWWdKjxctz8fdiIkSiuOYNcZPhxEWDXaA8QPLnd/I9c=";
20
20
+
sha256 = "sha256-sMET4ouZ33SZRnkqJBadVvIDYMCOi7pib6d1zt1EJ8k=";
22
21
};
23
22
24
23
outputs = [ "out" "man" ]
···
55
54
"--with-systemd-modloaddir=${placeholder "out"}/etc/modules-load.d/" # maybe
56
55
"--with-systemd-unitdir=${placeholder "out"}/lib/systemd/system/"
57
56
"--with-systemd-networkdir=${placeholder "out"}/lib/systemd/network/"
58
58
-
];
59
59
-
60
60
-
patches = [
61
61
-
# Fix failure in test-eapol. Remove when bumping to 1.18
62
62
-
(fetchpatch {
63
63
-
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git/patch/?id=ed10b00afa3f4c087b46d7ba0b60a47bd05d8b39";
64
64
-
sha256 = "0n8ixrbfh428ajncakcb9kd2n4fw82kw9sfskn1d9ny0lrg39nvg";
65
65
-
})
66
57
];
67
58
68
59
postUnpack = ''