evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ij / ijs / package.nix
blobad13daef788d167d0885e6d298fb1bb43f87c02c
1 { lib, stdenv, autoreconfHook, ghostscript }:
3 stdenv.mkDerivation {
4   pname = "ijs";
5   inherit (ghostscript) version src;
7   postPatch = "cd ijs";
9   enableParallelBuilding = true;
11   nativeBuildInputs = [ autoreconfHook ];
13   configureFlags = [ "--enable-shared" ];
15   meta = with lib; {
16     homepage = "https://www.openprinting.org/download/ijs/";
17     description = "Raster printer driver architecture";
19     license = licenses.gpl3Plus;
21     platforms = platforms.all;
22     maintainers = [ maintainers.abbradar ];
23   };