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
gitUpdater,
14
}:
15
16
-
stdenv.mkDerivation rec {
17
pname = "iwd";
18
version = "3.8";
19
20
src = fetchgit {
21
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
22
-
rev = version;
23
hash = "sha256-BNGXOiyV+aTHym4EBStVdQ0XekmkFEyx7PqmlG8HcVc=";
24
};
25
···
101
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
102
};
103
104
-
meta = with lib; {
105
homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
106
description = "Wireless daemon for Linux";
107
-
license = licenses.lgpl21Plus;
108
-
platforms = platforms.linux;
109
-
maintainers = with maintainers; [
110
dtzWill
111
fpletz
112
];
113
};
114
-
}
···
13
gitUpdater,
14
}:
15
16
+
stdenv.mkDerivation (finalAttrs: {
17
pname = "iwd";
18
version = "3.8";
19
20
src = fetchgit {
21
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
22
+
rev = finalAttrs.version;
23
hash = "sha256-BNGXOiyV+aTHym4EBStVdQ0XekmkFEyx7PqmlG8HcVc=";
24
};
25
···
101
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
102
};
103
104
+
meta = {
105
homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
106
description = "Wireless daemon for Linux";
107
+
license = lib.licenses.lgpl21Plus;
108
+
platforms = lib.platforms.linux;
109
+
maintainers = with lib.maintainers; [
110
dtzWill
111
fpletz
112
];
113
};
114
+
})