2016-09-18 20:35:23 +01:00
|
|
|
{ stdenv, intltool, fetchurl, pkgconfig, bash
|
|
|
|
, itstool, libxml2, libxslt, gnome3 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ intltool itstool libxml2 libxslt ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Yelp;
|
|
|
|
description = "Yelp's universal stylesheets for Mallard and DocBook";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = [licenses.gpl2 licenses.lgpl2];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|