2018-05-17 23:52:33 +01:00
|
|
|
{ stdenv, glib, autoreconfHook, pkgconfig, systemd, fetchgit }:
|
2018-02-14 03:10:07 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-17 23:52:33 +01:00
|
|
|
version = "2018.1";
|
2018-02-14 03:10:07 +00:00
|
|
|
name = "gnome-desktop-testing-${version}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
2018-05-29 09:25:00 +01:00
|
|
|
url = https://gitlab.gnome.org/GNOME/gnome-desktop-testing.git;
|
2018-02-14 03:10:07 +00:00
|
|
|
rev = "v${version}";
|
2018-05-17 23:52:33 +01:00
|
|
|
sha256 = "1bcd8v101ynsv2p5swh30hnajjf6z8dxzd89h9racp847hgjgyxc";
|
2018-02-14 03:10:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
2018-05-17 23:52:33 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|