2016-04-02 07:27:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, babl, libpng, cairo, libjpeg, which
|
2016-08-13 15:59:55 +01:00
|
|
|
, librsvg, pango, gtk, bzip2, json_glib, intltool, autoreconfHook, libraw }:
|
2015-04-10 16:02:57 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-02 07:27:23 +01:00
|
|
|
name = "gegl-0.3.6";
|
2015-04-10 16:02:57 +01:00
|
|
|
|
2016-04-02 07:27:23 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.gimp.org/pub/gegl/0.3/${name}.tar.bz2";
|
|
|
|
sha256 = "08m7dlf2kwmp7jw3qskwxas192swhn1g4jcd8aldg9drfjygprvh";
|
2015-04-10 16:02:57 +01:00
|
|
|
};
|
|
|
|
|
2016-08-02 19:02:50 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-04-10 16:02:57 +01:00
|
|
|
|
|
|
|
# needs fonts otherwise don't know how to pass them
|
|
|
|
configureFlags = "--disable-docs";
|
|
|
|
|
2016-08-02 19:02:50 +01:00
|
|
|
buildInputs = [
|
|
|
|
babl libpng cairo libjpeg librsvg pango gtk bzip2 which json_glib intltool
|
2016-08-13 15:59:55 +01:00
|
|
|
libraw
|
2016-08-02 19:02:50 +01:00
|
|
|
];
|
2015-04-10 16:02:57 +01:00
|
|
|
|
2016-08-02 19:02:50 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2015-04-10 16:02:57 +01:00
|
|
|
|
2016-08-02 19:02:50 +01:00
|
|
|
meta = {
|
2015-04-10 16:02:57 +01:00
|
|
|
description = "Graph-based image processing framework";
|
|
|
|
homepage = http://www.gegl.org;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-04-10 16:02:57 +01:00
|
|
|
};
|
|
|
|
}
|