tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
iwd: use finalAttrs
r-vdp
7 months ago
25443718
1ae47c10
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
iw
iwd
package.nix
+7
-7
pkgs/by-name/iw/iwd/package.nix
···
13
13
gitUpdater,
14
14
}:
15
15
16
16
-
stdenv.mkDerivation rec {
16
16
+
stdenv.mkDerivation (finalAttrs: {
17
17
pname = "iwd";
18
18
version = "3.8";
19
19
20
20
src = fetchgit {
21
21
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
22
22
-
rev = version;
22
22
+
rev = finalAttrs.version;
23
23
hash = "sha256-BNGXOiyV+aTHym4EBStVdQ0XekmkFEyx7PqmlG8HcVc=";
24
24
};
25
25
···
101
101
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
102
102
};
103
103
104
104
-
meta = with lib; {
104
104
+
meta = {
105
105
homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
106
106
description = "Wireless daemon for Linux";
107
107
-
license = licenses.lgpl21Plus;
108
108
-
platforms = platforms.linux;
109
109
-
maintainers = with maintainers; [
107
107
+
license = lib.licenses.lgpl21Plus;
108
108
+
platforms = lib.platforms.linux;
109
109
+
maintainers = with lib.maintainers; [
110
110
dtzWill
111
111
fpletz
112
112
];
113
113
};
114
114
-
}
114
114
+
})