summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.16/core/yelp-xsl/default.nix
blob: 3ade5f355d44b2f86adf110a8fd91519215f29fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, intltool, fetchurl, pkgconfig, bash
, itstool, libxml2, libxslt, gnome3 }:

stdenv.mkDerivation rec {
  name = "yelp-xsl-${gnome3.version}.1";

  src = fetchurl {
    url = "mirror://gnome/sources/yelp-xsl/${gnome3.version}/${name}.tar.xz";
    sha256 = "0jhpni4mmfvj3xf57rjm61nc8d0x66hz9gd1ywws5lh39g6fx59j";
  };

  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;
  };
}