lol

gnome-desktop-testing: unstable-2019-12-11 → 2021.1

https://gitlab.gnome.org/GNOME/gnome-desktop-testing/-/compare/57239dc8ef49ba74d442603a07a3e132b0cfdc6a...v2021.1

+12 -4
+12 -4
pkgs/development/tools/gnome-desktop-testing/default.nix
··· 1 - { lib, stdenv 2 , glib 3 , autoreconfHook 4 , pkg-config 5 , systemd 6 , fetchFromGitLab 7 }: 8 9 stdenv.mkDerivation rec { 10 pname = "gnome-desktop-testing"; 11 - version = "unstable-2019-12-11"; 12 13 src = fetchFromGitLab { 14 domain = "gitlab.gnome.org"; 15 owner = "GNOME"; 16 repo = "gnome-desktop-testing"; 17 - rev = "57239dc8ef49ba74d442603a07a3e132b0cfdc6a"; 18 - sha256 = "01c4jhpk23kfcnw3l9kfwjw9v5kgqmfhhqypw4k2d2sdkf4mgfv4"; 19 }; 20 21 nativeBuildInputs = [ ··· 29 ]; 30 31 enableParallelBuilding = true; 32 33 meta = with lib; { 34 description = "GNOME test runner for installed tests";
··· 1 + { stdenv 2 + , lib 3 , glib 4 , autoreconfHook 5 , pkg-config 6 , systemd 7 , fetchFromGitLab 8 + , nix-update-script 9 }: 10 11 stdenv.mkDerivation rec { 12 pname = "gnome-desktop-testing"; 13 + version = "2021.1"; 14 15 src = fetchFromGitLab { 16 domain = "gitlab.gnome.org"; 17 owner = "GNOME"; 18 repo = "gnome-desktop-testing"; 19 + rev = "v${version}"; 20 + sha256 = "sha256-PWn4eEZskY0YgMpf6O2dgXNSu8b8T311vFHREv2HE/Q="; 21 }; 22 23 nativeBuildInputs = [ ··· 31 ]; 32 33 enableParallelBuilding = true; 34 + 35 + passthru = { 36 + updateScript = nix-update-script { 37 + attrPath = "gnome-desktop-testing"; 38 + }; 39 + }; 40 41 meta = with lib; { 42 description = "GNOME test runner for installed tests";