mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
26 lines
539 B
Nix
26 lines
539 B
Nix
{ 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 ];
|
|
};
|
|
}
|