forked from mirrors/nixpkgs
26 lines
838 B
Nix
26 lines
838 B
Nix
{ stdenv, fetchurl, gnome3, intltool, itstool, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-getting-started-docs";
|
|
version = "3.34.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-getting-started-docs/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "00in6yc02pdalyx8g0fncmch0l7nr819587ngjm83ara9qa8z6fa";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|