gnome-devel-docs: init at 3.16.2

This commit is contained in:
Jascha Geerds 2015-08-13 17:30:34 +02:00
parent 5f067a0e61
commit bbc4f8e141
2 changed files with 22 additions and 0 deletions

View File

@ -301,6 +301,8 @@ let
gdl = callPackage ./devtools/gdl { };
gnome-devel-docs = callPackage ./devtools/gnome-devel-docs { };
#### Games
aisleriot = callPackage ./games/aisleriot { };

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, gnome3, intltool, itstool, libxml2 }:
stdenv.mkDerivation rec {
name = "gnome-devel-docs-${gnome3.version}.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-devel-docs/${gnome3.version}/${name}.tar.xz";
sha256 = "1jkh40ya5mqss57p27b1hv77x5qis4zc377pyvzqa5wkzrvd0nls";
};
buildInputs = [ intltool itstool libxml2 ];
meta = with stdenv.lib; {
homepage = https://github.com/GNOME/gnome-devel-docs;
description = "Developer documentation for GNOME";
maintainers = gnome3.maintainers;
license = licenses.fdl12;
platforms = platforms.linux;
};
}