nixpkgs/pkgs/development/tools/gnome-desktop-testing/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
877 B
Nix
Raw Normal View History

{ stdenv
, lib
, glib
, autoreconfHook
, pkg-config
, systemd
, fetchFromGitLab
, nix-update-script
}:
2018-02-14 03:10:07 +00:00
stdenv.mkDerivation rec {
pname = "gnome-desktop-testing";
version = "2021.1";
2018-02-14 03:10:07 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "gnome-desktop-testing";
rev = "v${version}";
sha256 = "sha256-PWn4eEZskY0YgMpf6O2dgXNSu8b8T311vFHREv2HE/Q=";
2018-02-14 03:10:07 +00:00
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
2018-02-14 03:10:07 +00:00
buildInputs = [
glib
systemd
];
2018-02-14 03:10:07 +00:00
enableParallelBuilding = true;
passthru = {
updateScript = nix-update-script { };
};
meta = with lib; {
description = "GNOME test runner for installed tests";
homepage = "https://gitlab.gnome.org/GNOME/gnome-desktop-testing";
license = licenses.lgpl2Plus;
2018-02-14 03:10:07 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.jtojnar ];
};
}