gegl_0_3: drop

This commit is contained in:
Jan Tojnar 2019-08-25 01:16:45 +02:00
parent 071804bf60
commit ba2a16ffa2
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 0 additions and 42 deletions

View File

@ -1,38 +0,0 @@
{ stdenv, fetchurl, pkgconfig, glib, babl, libpng, cairo, libjpeg, which
, librsvg, pango, gtk, bzip2, json-glib, intltool, autoreconfHook, libraw
, libwebp, gnome3, libintl }:
stdenv.mkDerivation rec {
name = "gegl-0.3.34";
src = fetchurl {
url = "https://download.gimp.org/pub/gegl/0.3/${name}.tar.bz2";
sha256 = "010k86wn8cmr07rqwa4lccrmiiqrwbnkxvic4lpapwgbamv258jw";
};
hardeningDisable = [ "format" ];
# needs fonts otherwise don't know how to pass them
configureFlags = [ "--disable-docs" ];
enableParallelBuilding = true;
doCheck = true;
buildInputs = [
libpng cairo libjpeg librsvg pango gtk bzip2
libraw libwebp gnome3.gexiv2
];
propagatedBuildInputs = [ glib json-glib babl ]; # for gegl-3.0.pc
nativeBuildInputs = [ pkgconfig intltool which autoreconfHook libintl ];
meta = with stdenv.lib; {
description = "Graph-based image processing framework";
homepage = http://www.gegl.org;
license = licenses.gpl3;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.unix;
};
}

View File

@ -10796,10 +10796,6 @@ in
inherit (darwin.apple_sdk.frameworks) OpenGL;
};
gegl_0_3 = callPackage ../development/libraries/gegl/3.0.nix {
gtk = res.gtk2;
};
gegl_0_4 = callPackage ../development/libraries/gegl/4.0.nix {
gtk = res.gtk2;
};