waycheck: 0.1.3 -> 1.0.0

Signed-off-by: Federico Damián Schonborn <fdschonborn@gmail.com>

authored by Federico Damián Schonborn and committed by Matthieu Coudron bb537a38 3c6cf394

+6 -6
+6 -6
pkgs/by-name/wa/waycheck/package.nix
··· 10 , wrapGAppsHook 11 }: 12 13 - stdenv.mkDerivation rec { 14 pname = "waycheck"; 15 - version = "0.1.3"; 16 17 src = fetchFromGitLab { 18 domain = "gitlab.freedesktop.org"; 19 owner = "serebit"; 20 repo = "waycheck"; 21 - rev = "v${version}"; 22 - hash = "sha256-DbXc1Q/ZIqlIMocFld3fOmUp44rU3fEzazHKSDdqMNs="; 23 }; 24 25 nativeBuildInputs = [ ··· 51 description = "Simple GUI that displays the protocols implemented by a Wayland compositor"; 52 homepage = "https://gitlab.freedesktop.org/serebit/waycheck"; 53 license = licenses.asl20; 54 - maintainers = with maintainers; [ julienmalka ]; 55 mainProgram = "waycheck"; 56 platforms = platforms.linux; 57 }; 58 - }
··· 10 , wrapGAppsHook 11 }: 12 13 + stdenv.mkDerivation (finalAttrs: { 14 pname = "waycheck"; 15 + version = "1.0.0"; 16 17 src = fetchFromGitLab { 18 domain = "gitlab.freedesktop.org"; 19 owner = "serebit"; 20 repo = "waycheck"; 21 + rev = "v${finalAttrs.version}"; 22 + hash = "sha256-oGpiFwbPBQHF0wRHliltU8B+QmClcoFfbjpAYzOFPqs="; 23 }; 24 25 nativeBuildInputs = [ ··· 51 description = "Simple GUI that displays the protocols implemented by a Wayland compositor"; 52 homepage = "https://gitlab.freedesktop.org/serebit/waycheck"; 53 license = licenses.asl20; 54 + maintainers = with maintainers; [ julienmalka federicoschonborn ]; 55 mainProgram = "waycheck"; 56 platforms = platforms.linux; 57 }; 58 + })