depot/third_party/nixpkgs/pkgs/development/libraries/ijs/default.nix

25 lines
524 B
Nix
Raw Normal View History

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