Skip to content

Commit

Permalink
gnome-desktop-testing: init at 2016.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Feb 14, 2018
1 parent 9b9eeb5 commit c878414
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/development/tools/gnome-desktop-testing/default.nix
@@ -0,0 +1,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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -7613,6 +7613,8 @@ with pkgs;

gnome_doc_utils = callPackage ../development/tools/documentation/gnome-doc-utils {};

gnome-desktop-testing = callPackage ../development/tools/gnome-desktop-testing {};

gnum4 = callPackage ../development/tools/misc/gnum4 { };

gnumake382 = callPackage ../development/tools/build-managers/gnumake/3.82 { };
Expand Down

0 comments on commit c878414

Please sign in to comment.