yelp-xsl: new package

Yelp's universal stylesheets for Mallard and DocBook.

https://wiki.gnome.org/Apps/Yelp
This commit is contained in:
Luca Bruno 2014-02-16 11:25:25 +01:00
parent 402c1d582e
commit 923681d576
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, intltool, fetchurl, pkgconfig, bash
, itstool, libxml2, libxslt }:
stdenv.mkDerivation rec {
name = "yelp-xsl-3.10.1";
src = fetchurl {
url = "https://download.gnome.org/sources/yelp-xsl/3.10/${name}.tar.xz";
sha256 = "59c6dee3999121f6ffd33a9c5228316b75bc22e3bd68fff310beb4eeff245887";
};
doCheck = true;
buildInputs = [ pkgconfig intltool itstool libxml2 libxslt ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Yelp;
description = "Yelp's universal stylesheets for Mallard and DocBook";
maintainers = with maintainers; [ lethalman ];
license = [licenses.gpl2 licenses.lgpl2];
platforms = platforms.linux;
};
}

View file

@ -84,6 +84,8 @@ rec {
vte = callPackage ./core/vte { };
yelp_xsl = callPackage ./core/yelp-xsl { };
zenity = callPackage ./core/zenity { };