From 13bc58aff7279db7ecd91bbb75d4f53de0f1576f Mon Sep 17 00:00:00 2001 From: kyehn <228304369+kyehn@users.noreply.github.com> Date: Fri, 29 Aug 2025 07:23:36 +0000 Subject: [PATCH] wlcs: use tag and remove with lib --- pkgs/by-name/wl/wlcs/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/wl/wlcs/package.nix b/pkgs/by-name/wl/wlcs/package.nix index 4420c05405d0..b31575beb0d8 100644 --- a/pkgs/by-name/wl/wlcs/package.nix +++ b/pkgs/by-name/wl/wlcs/package.nix @@ -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" ];