linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / ijs / default.nix
blobb300731ce440be86f030665e7fca1794739886b7
1 { lib, stdenv, autoreconfHook, ghostscript }:
3 stdenv.mkDerivation {
4   name = "ijs-${ghostscript.version}";
6   inherit (ghostscript) src;
8   postPatch = "cd ijs";
10   enableParallelBuilding = true;
12   nativeBuildInputs = [ autoreconfHook ];
14   configureFlags = [ "--enable-shared" ];
16   meta = with lib; {
17     homepage = "https://www.openprinting.org/download/ijs/";
18     description = "Raster printer driver architecture";
20     license = licenses.gpl3Plus;
22     platforms = platforms.all;
23     maintainers = [ maintainers.abbradar ];
24   };