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