8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
25 lines
790 B
Nix
25 lines
790 B
Nix
{ stdenv, fetchurl, gnome3, intltool, itstool, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-devel-docs";
|
|
version = "3.32.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-devel-docs/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0xqpgf975rws60qxilq635pblbpgwspyykgzxnb4awd9zrs5lbx0";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript { packageName = "gnome-devel-docs"; attrPath = "gnome3.gnome-devel-docs"; };
|
|
};
|
|
|
|
buildInputs = [ intltool itstool libxml2 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/GNOME/gnome-devel-docs";
|
|
description = "Developer documentation for GNOME";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.fdl12;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|