2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
fetchurl,
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
pkg-config,
|
|
|
|
ghostscript,
|
|
|
|
cairo,
|
|
|
|
}:
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libspectre";
|
|
|
|
version = "0.2.12";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://libspectre.freedesktop.org/releases/${pname}-${version}.tar.gz";
|
|
|
|
hash = "sha256-VadRfNNXK9JWXfDPRQlEoE1Sc7J567NpqJU5GVfw+WA=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
# Need `libgs.so'.
|
|
|
|
ghostscript
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
checkInputs = [ cairo ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
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 = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|