nixpkgs/pkgs/development/libraries/ijs/default.nix
2022-02-24 19:25:35 +01:00

25 lines
524 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 ];
};
}