forked from mirrors/nixpkgs
26 lines
826 B
Nix
26 lines
826 B
Nix
{ stdenv, fetchurl, gnome3, intltool, itstool, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnome-getting-started-docs-${version}";
|
|
version = "3.28.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-getting-started-docs/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
sha256 = "09khgzrbvcqvgjkqh8rp609bx818v5c8gzq61nxy5582s8habg8g";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript { packageName = "gnome-getting-started-docs"; attrPath = "gnome3.gnome-getting-started-docs"; };
|
|
};
|
|
|
|
buildInputs = [ intltool itstool libxml2 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://live.gnome.org/DocumentationProject;
|
|
description = "Help a new user get started in GNOME";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.cc-by-sa-30;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|