summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.12/core/yelp-xsl/default.nix
blob: 0a5bc78af47815235181ca1aec4f956897c18fa6 (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 }:

stdenv.mkDerivation rec {
  name = "yelp-xsl-3.12.0";

  src = fetchurl {
    url = "mirror://gnome/sources/yelp-xsl/3.12/${name}.tar.xz";
    sha256 = "dd0b8af338b1cdae50444273d7c761e3f511224421487311103edc95a4493656";
  };

  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 ];
    # TODO license = [licenses.gpl2 licenses.lgpl2];
    platforms = platforms.linux;
  };
}