mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{ lib, stdenv
|
|
, gettext
|
|
, fetchurl
|
|
, pkg-config
|
|
, itstool
|
|
, libxml2
|
|
, libxslt
|
|
, gnome
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yelp-xsl";
|
|
version = "42.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/yelp-xsl/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-I4vhULFlMIDOE5lxMw/TbTomWV4NagQKLAML89IAW80=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
libxml2
|
|
libxslt
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/yelp-xsl";
|
|
description = "Yelp's universal stylesheets for Mallard and DocBook";
|
|
maintainers = teams.gnome.members;
|
|
license = with licenses; [
|
|
# See https://gitlab.gnome.org/GNOME/yelp-xsl/blob/master/COPYING
|
|
# Stylesheets
|
|
lgpl2Plus
|
|
# Icons, unclear: https://gitlab.gnome.org/GNOME/yelp-xsl/issues/25
|
|
gpl2
|
|
# highlight.js
|
|
bsd3
|
|
];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|