mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
27 lines
734 B
Nix
27 lines
734 B
Nix
{ stdenv, glib, autoreconfHook, pkgconfig, systemd, fetchgit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2018.1";
|
|
name = "gnome-desktop-testing-${version}";
|
|
|
|
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 ];
|
|
};
|
|
}
|