summary refs log tree commit diff
path: root/pkgs/development/tools/gnome-desktop-testing/default.nix
blob: 8f9b9ddf0b5547790a2965575ea254ce12d7c2f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, glib, autoreconfHook, pkgconfig, systemd, fetchgit }:

stdenv.mkDerivation rec {
  version = "2018.1";
  pname = "gnome-desktop-testing";

  src = fetchgit {
    url = https://gitlab.gnome.org/GNOME/gnome-desktop-testing.git;
    rev = "v${version}";
    sha256 = "1bcd8v101ynsv2p5swh30hnajjf6z8dxzd89h9racp847hgjgyxc";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  buildInputs = [ glib systemd ];

  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 ];
  };
}