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

26 lines
558 B
Nix
Raw Normal View History

{ stdenv, autoreconfHook, ghostscript }:
2014-11-05 03:29:02 +01:00
stdenv.mkDerivation {
2016-04-30 02:00:09 +02:00
name = "ijs-${ghostscript.version}";
2014-11-05 03:29:02 +01:00
2016-04-30 02:00:09 +02:00
inherit (ghostscript) src;
2014-11-05 03:29:02 +01:00
2016-01-13 17:07:21 +01:00
postPatch = "cd ijs";
2014-11-05 03:29:02 +01:00
enableParallelBuilding = true;
nativeBuildInputs = [ autoreconfHook ];
configureFlags = [ "--disable-static" "--enable-shared" ];
meta = with stdenv.lib; {
homepage = https://www.openprinting.org/download/ijs/;
2014-11-05 03:29:02 +01:00
description = "Raster printer driver architecture";
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = [ maintainers.abbradar ];
};
}