gnome3.gnome-user-docs

svn path=/nixpkgs/trunk/; revision=31373
This commit is contained in:
Yury G. Kudryashov 2012-01-06 20:09:54 +00:00
parent 9d03e96caa
commit a6288f1701
2 changed files with 14 additions and 0 deletions

View File

@ -17,4 +17,6 @@
gsettings_desktop_schemas = callPackage ./platform/gsettings-desktop-schemas.nix {};
GConf = callPackage ./platform/GConf.nix { };
gnome_user_docs = callPackage ./platform/gnome-user-docs.nix { };
}

View File

@ -0,0 +1,12 @@
{ stdenv, fetchurl, xz, itstool, libxml2, gettext }:
stdenv.mkDerivation {
name = "gnome-user-docs-3.2.2";
src = fetchurl {
url = mirror://gnome/sources/gnome-user-docs/3.2/gnome-user-docs-3.2.2.tar.xz;
sha256 = "1ka0nw2kc85p10y8x31v0wv06a88k7qrgafp4ys04y9fzz0rkcjj";
};
buildNativeInputs = [ xz itstool libxml2 gettext ];
}