2016-04-02 06:27:23 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, babl, libpng, cairo, libjpeg, which
|
2018-02-25 02:23:58 +00:00
|
|
|
, librsvg, pango, gtk, bzip2, json-glib, intltool, autoreconfHook, libraw
|
2018-03-14 19:15:06 +00:00
|
|
|
, libwebp, gnome3, libintl }:
|
2015-04-10 15:02:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-04-21 22:15:12 +00:00
|
|
|
name = "gegl-0.3.34";
|
2015-04-10 15:02:57 +00:00
|
|
|
|
2016-04-02 06:27:23 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.gimp.org/pub/gegl/0.3/${name}.tar.bz2";
|
2018-04-21 22:15:12 +00:00
|
|
|
sha256 = "010k86wn8cmr07rqwa4lccrmiiqrwbnkxvic4lpapwgbamv258jw";
|
2015-04-10 15:02:57 +00:00
|
|
|
};
|
|
|
|
|
2016-08-02 18:02:50 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-04-10 15:02:57 +00:00
|
|
|
|
|
|
|
# needs fonts otherwise don't know how to pass them
|
|
|
|
configureFlags = "--disable-docs";
|
|
|
|
|
2017-12-05 23:14:59 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2016-08-02 18:02:50 +00:00
|
|
|
buildInputs = [
|
2017-12-21 23:24:35 +00:00
|
|
|
libpng cairo libjpeg librsvg pango gtk bzip2
|
2017-12-05 23:14:59 +00:00
|
|
|
libraw libwebp gnome3.gexiv2
|
2016-08-02 18:02:50 +00:00
|
|
|
];
|
2015-04-10 15:02:57 +00:00
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
propagatedBuildInputs = [ glib json-glib babl ]; # for gegl-3.0.pc
|
2017-12-21 23:24:35 +00:00
|
|
|
|
2018-03-14 19:15:06 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool which autoreconfHook libintl ];
|
2015-04-10 15:02:57 +00:00
|
|
|
|
2018-01-30 18:13:53 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-04-10 15:02:57 +00:00
|
|
|
description = "Graph-based image processing framework";
|
|
|
|
homepage = http://www.gegl.org;
|
2018-01-30 18:13:53 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
platforms = platforms.unix;
|
2015-04-10 15:02:57 +00:00
|
|
|
};
|
|
|
|
}
|