nixpkgs/pkgs/development/libraries/libspectre/default.nix

34 lines
853 B
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, ghostscript, cairo }:
stdenv.mkDerivation rec {
name = "libspectre-0.2.7";
src = fetchurl {
url = "https://libspectre.freedesktop.org/releases/${name}.tar.gz";
sha256 = "1v63lqc6bhhxwkpa43qmz8phqs8ci4dhzizyy16d3vkb20m846z8";
};
2016-01-13 17:48:28 +00:00
patches = [ ./libspectre-0.2.7-gs918.patch ];
buildInputs = [
# Need `libgs.so'.
pkgconfig ghostscript cairo /*for tests*/
];
doCheck = true;
meta = {
homepage = http://libspectre.freedesktop.org/;
description = "PostScript rendering library";
longDescription = ''
libspectre is a small library for rendering Postscript
documents. It provides a convenient easy to use API for
handling and rendering Postscript documents.
'';
license = stdenv.lib.licenses.gpl2Plus;
2017-07-13 17:39:14 +00:00
platforms = stdenv.lib.platforms.unix;
};
}