a466941945
Since there is no common release schedule, I'd prefer to avoid gnome3 set at all. svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33203
13 lines
337 B
Nix
13 lines
337 B
Nix
{ stdenv, fetchurl, 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 = [ itstool libxml2 gettext ];
|
|
}
|