26 lines
582 B
Nix
26 lines
582 B
Nix
{ stdenv, fetchurl, fetchpatch, autoreconfHook, ghostscript }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ijs-${ghostscript.version}";
|
|
|
|
inherit (ghostscript) src;
|
|
|
|
postPatch = "cd ijs";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
configureFlags = [ "--disable-static" "--enable-shared" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.openprinting.org/download/ijs/";
|
|
description = "Raster printer driver architecture";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.abbradar ];
|
|
};
|
|
}
|