My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/ijs/default.nix

24 lines
524 B

{ 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 ];
};
}