tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
wlcs: use tag and remove with lib
kyehn
5 months ago
13bc58af
8ea0d1bf
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
wl
wlcs
package.nix
+5
-5
pkgs/by-name/wl/wlcs/package.nix
···
19
19
src = fetchFromGitHub {
20
20
owner = "MirServer";
21
21
repo = "wlcs";
22
22
-
rev = "v${finalAttrs.version}";
22
22
+
tag = "v${finalAttrs.version}";
23
23
hash = "sha256-W4/a7neFcaqdPIAWDk5TcIuIWZ76rC7xCk3beJVqE/E=";
24
24
};
25
25
···
48
48
};
49
49
};
50
50
51
51
-
meta = with lib; {
51
51
+
meta = {
52
52
description = "Wayland Conformance Test Suite";
53
53
longDescription = ''
54
54
wlcs aspires to be a protocol-conformance-verifying test suite usable by Wayland
···
67
67
'';
68
68
homepage = "https://github.com/MirServer/wlcs";
69
69
changelog = "https://github.com/MirServer/wlcs/releases/tag/v${finalAttrs.version}";
70
70
-
license = licenses.gpl3Only;
71
71
-
maintainers = with maintainers; [ OPNA2608 ];
72
72
-
platforms = platforms.linux;
70
70
+
license = lib.licenses.gpl3Only;
71
71
+
maintainers = with lib.maintainers; [ OPNA2608 ];
72
72
+
platforms = lib.platforms.linux;
73
73
pkgConfigModules = [
74
74
"wlcs"
75
75
];