summary refs log blame commit diff
path: root/pkgs/development/libraries/ijs/default.nix
blob: b300731ce440be86f030665e7fca1794739886b7 (plain) (tree)
1
2
3
4
5
6
7
8
                                             
 
                     
                                      
 
                            
 
                       




                                         
                                         
 
                    
                                                            







                                                       
{ lib, stdenv, autoreconfHook, ghostscript }:

stdenv.mkDerivation {
  name = "ijs-${ghostscript.version}";

  inherit (ghostscript) 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 ];
  };
}