wlcs: use tag and remove with lib

This commit is contained in:
kyehn
2025-08-29 07:23:36 +00:00
parent 8ea0d1bfdc
commit 13bc58aff7
+5 -5
View File
@@ -19,7 +19,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "MirServer";
repo = "wlcs";
rev = "v${finalAttrs.version}";
tag = "v${finalAttrs.version}";
hash = "sha256-W4/a7neFcaqdPIAWDk5TcIuIWZ76rC7xCk3beJVqE/E=";
};
@@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
};
};
meta = with lib; {
meta = {
description = "Wayland Conformance Test Suite";
longDescription = ''
wlcs aspires to be a protocol-conformance-verifying test suite usable by Wayland
@@ -67,9 +67,9 @@ stdenv.mkDerivation (finalAttrs: {
'';
homepage = "https://github.com/MirServer/wlcs";
changelog = "https://github.com/MirServer/wlcs/releases/tag/v${finalAttrs.version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ OPNA2608 ];
platforms = platforms.linux;
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ OPNA2608 ];
platforms = lib.platforms.linux;
pkgConfigModules = [
"wlcs"
];