2019-04-25 08:46:07 +02:00
|
|
|
{ stdenv, fetchurl, itstool, libxml2, gettext, gnome3 }:
|
2012-01-06 21:09:54 +01:00
|
|
|
|
2019-04-25 08:46:07 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gnome-user-docs";
|
|
|
|
version = "3.2.2";
|
2012-01-06 21:09:54 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-25 08:46:07 +02:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2012-01-06 21:09:54 +01:00
|
|
|
sha256 = "1ka0nw2kc85p10y8x31v0wv06a88k7qrgafp4ys04y9fzz0rkcjj";
|
|
|
|
};
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ itstool libxml2 gettext ];
|
2019-04-25 08:46:07 +02:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gnome3.gnome-user-docs";
|
|
|
|
};
|
|
|
|
};
|
2019-06-26 21:44:28 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://gitlab.gnome.org/GNOME/gnome-user-docs";
|
|
|
|
description = "GNOME User Documentation";
|
|
|
|
license = stdenv.lib.licenses.cc-by-30;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
2012-01-06 21:09:54 +01:00
|
|
|
}
|