codesnap: init at 0.8.2 (#364266)
[NixPkgs.git] / pkgs / by-name / ij / ijs / package.nix
blobd8f363082df4ee423dde9472ad4a30a9a9f757d3
2   lib,
3   stdenv,
4   autoreconfHook,
5   ghostscript,
6 }:
8 stdenv.mkDerivation {
9   pname = "ijs";
10   inherit (ghostscript) version src;
12   postPatch = "cd ijs";
14   enableParallelBuilding = true;
16   nativeBuildInputs = [ autoreconfHook ];
18   configureFlags = [ "--enable-shared" ];
20   meta = with lib; {
21     homepage = "https://www.openprinting.org/download/ijs/";
22     description = "Raster printer driver architecture";
24     license = licenses.gpl3Plus;
26     platforms = platforms.all;
27     maintainers = [ maintainers.abbradar ];
28   };