2021-01-19 06:50:56 +00:00
|
|
|
{stdenv, fetchurl, pkg-config, glib, pango}:
|
2005-08-13 22:35:49 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-06-18 12:48:41 +01:00
|
|
|
name = "pangoxsl-1.6.0.3";
|
2005-08-13 22:35:49 +01:00
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "mirror://sourceforge/pangopdf/pangoxsl-1.6.0.3.tar.gz";
|
2016-11-11 02:35:07 +00:00
|
|
|
sha256 = "1wcd553nf4nwkrfrh765cyzwj9bsg7zpkndg2hjs8mhwgx04lm8n";
|
2005-08-13 22:35:49 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2005-08-13 22:35:49 +01:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
pango
|
|
|
|
];
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2018-10-25 21:12:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Implements several of the inline properties defined by XSL that are not currently implemented by Pango";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/pangopdf";
|
2018-10-25 21:12:57 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.lgpl2;
|
2016-08-02 17:06:29 +01:00
|
|
|
};
|
2005-08-13 22:35:49 +01:00
|
|
|
}
|