mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9e78f76ade
* freetype: Remove unnecessary `--disable-static`. The true-by-default `dontDisableStatic` already takes care of it. Fixes freetype not being overridable to have static libs. * treewide: Remove unnecessary `--disable-static`. The true-by-default `dontDisableStatic` already takes care of it. Fixes these packages not being overridable to have static libs.
26 lines
539 B
Nix
26 lines
539 B
Nix
{ stdenv, autoreconfHook, ghostscript }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ijs-${ghostscript.version}";
|
|
|
|
inherit (ghostscript) src;
|
|
|
|
postPatch = "cd ijs";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
configureFlags = [ "--enable-shared" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.openprinting.org/download/ijs/;
|
|
description = "Raster printer driver architecture";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.abbradar ];
|
|
};
|
|
}
|