about summary refs log tree commit diff
path: root/pkgs/development/tools/gnome-desktop-testing/default.nix
blob: ff03897edb29306ecc0fba83a7f8264fcfd6eca0 (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, libgsystem, fetchgit }:

stdenv.mkDerivation rec {
  version = "2016.1";
  name = "gnome-desktop-testing-${version}";

  src = fetchgit {
    url = https://git.gnome.org/browse/gnome-desktop-testing;
    rev = "v${version}";
    sha256 = "18qhmsab6jc01qrfzjx8m4799gbs72c4jg830mp0p865rcbl68dc";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  buildInputs = [ glib libgsystem ];

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