nixpkgs/pkgs/development/libraries/ijs/default.nix

26 lines
558 B
Nix

{ stdenv, 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 ];
};
}