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

27 lines
734 B
Nix
Raw Normal View History

{ stdenv, glib, autoreconfHook, pkgconfig, systemd, fetchgit }:
2018-02-14 03:10:07 +00:00
stdenv.mkDerivation rec {
version = "2018.1";
2018-02-14 03:10:07 +00:00
name = "gnome-desktop-testing-${version}";
src = fetchgit {
2018-05-29 08:25:00 +00:00
url = https://gitlab.gnome.org/GNOME/gnome-desktop-testing.git;
2018-02-14 03:10:07 +00:00
rev = "v${version}";
sha256 = "1bcd8v101ynsv2p5swh30hnajjf6z8dxzd89h9racp847hgjgyxc";
2018-02-14 03:10:07 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ glib systemd ];
2018-02-14 03:10:07 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "GNOME OSTree testing code";
homepage = https://live.gnome.org/Initiatives/GnomeGoals/InstalledTests;
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = [ maintainers.jtojnar ];
};
}