summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/yelp-xsl
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2014-02-16 11:25:25 +0100
committerLuca Bruno <lucabru@src.gnome.org>2014-02-16 11:43:16 +0100
commit923681d576009ca9a18a18d8494e778cb8e568ae (patch)
tree61beca2d418cc17d35e1ccb081c3f746cfd71e66 /pkgs/desktops/gnome-3/core/yelp-xsl
parent402c1d582ed230f4ad02e42385471983a9df25b2 (diff)
downloadnixlib-923681d576009ca9a18a18d8494e778cb8e568ae.tar
nixlib-923681d576009ca9a18a18d8494e778cb8e568ae.tar.gz
nixlib-923681d576009ca9a18a18d8494e778cb8e568ae.tar.bz2
nixlib-923681d576009ca9a18a18d8494e778cb8e568ae.tar.lz
nixlib-923681d576009ca9a18a18d8494e778cb8e568ae.tar.xz
nixlib-923681d576009ca9a18a18d8494e778cb8e568ae.tar.zst
nixlib-923681d576009ca9a18a18d8494e778cb8e568ae.zip
yelp-xsl: new package
Yelp's universal stylesheets for Mallard and DocBook.

https://wiki.gnome.org/Apps/Yelp
Diffstat (limited to 'pkgs/desktops/gnome-3/core/yelp-xsl')
-rw-r--r--pkgs/desktops/gnome-3/core/yelp-xsl/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/core/yelp-xsl/default.nix b/pkgs/desktops/gnome-3/core/yelp-xsl/default.nix
new file mode 100644
index 000000000000..708a8ff32d6c
--- /dev/null
+++ b/pkgs/desktops/gnome-3/core/yelp-xsl/default.nix
@@ -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;
+  };
+}