2016-04-30 01:00:09 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, autoreconfHook, ghostscript }:
|
2014-11-05 02:29:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-04-30 01:00:09 +01:00
|
|
|
name = "ijs-${ghostscript.version}";
|
2014-11-05 02:29:02 +00:00
|
|
|
|
2016-04-30 01:00:09 +01:00
|
|
|
inherit (ghostscript) src;
|
2014-11-05 02:29:02 +00:00
|
|
|
|
2016-01-13 16:07:21 +00:00
|
|
|
postPatch = "cd ijs";
|
2014-11-05 02:29:02 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-static" "--enable-shared" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://www.openprinting.org/download/ijs/;
|
2014-11-05 02:29:02 +00:00
|
|
|
description = "Raster printer driver architecture";
|
|
|
|
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.abbradar ];
|
|
|
|
};
|
|
|
|
}
|