130 lines
2.6 KiB
Nix
130 lines
2.6 KiB
Nix
{ stdenv
|
|
, fetchurl
|
|
, fetchpatch
|
|
, pkgconfig
|
|
, vala
|
|
, gobject-introspection
|
|
, gtk-doc
|
|
, docbook_xsl
|
|
, docbook_xml_dtd_43
|
|
, glib
|
|
, babl
|
|
, libpng
|
|
, cairo
|
|
, libjpeg
|
|
, librsvg
|
|
, lensfun
|
|
, libspiro
|
|
, netsurf
|
|
, pango
|
|
, poly2tri-c
|
|
, poppler
|
|
, bzip2
|
|
, json-glib
|
|
, gettext
|
|
, meson
|
|
, ninja
|
|
, libraw
|
|
, gexiv2
|
|
, libwebp
|
|
, luajit
|
|
, openexr
|
|
, OpenCL
|
|
, suitesparse
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gegl";
|
|
version = "0.4.22";
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
outputBin = "dev";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.gimp.org/pub/gegl/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0q9cckf90fb82qc5d496fjz459f1xw4j4p3rff1f57yivx0yr20q";
|
|
};
|
|
|
|
patches = [
|
|
# Prevent deadlock making tests time-out
|
|
# https://gitlab.gnome.org/GNOME/gegl/issues/226
|
|
# https://gitlab.gnome.org/GNOME/glib/issues/1941
|
|
(fetchpatch {
|
|
url = "https://gitlab.gnome.org/GNOME/gegl/commit/1d530816266b52c8788bbe1504c5b2d6eceba036.patch";
|
|
sha256 = "8PlUcLQkuskjDGCA2obUPDW3jE++A6B5YWVgvn+GFrU=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
gettext
|
|
meson
|
|
ninja
|
|
vala
|
|
gobject-introspection
|
|
gtk-doc
|
|
docbook_xsl
|
|
docbook_xml_dtd_43
|
|
];
|
|
|
|
buildInputs = [
|
|
libpng
|
|
cairo
|
|
libjpeg
|
|
librsvg
|
|
lensfun
|
|
libspiro
|
|
netsurf.libnsgif
|
|
pango
|
|
poly2tri-c
|
|
poppler
|
|
bzip2
|
|
libraw
|
|
libwebp
|
|
gexiv2
|
|
luajit
|
|
openexr
|
|
suitesparse
|
|
] ++ stdenv.lib.optional stdenv.isDarwin OpenCL;
|
|
|
|
# for gegl-4.0.pc
|
|
propagatedBuildInputs = [
|
|
glib
|
|
json-glib
|
|
babl
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Ddocs=true"
|
|
"-Dmrg=disabled" # not sure what that is
|
|
"-Dsdl2=disabled"
|
|
"-Dpygobject=disabled"
|
|
"-Dlibav=disabled"
|
|
"-Dlibv4l=disabled"
|
|
"-Dlibv4l2=disabled"
|
|
# Disabled due to multiple vulnerabilities, see
|
|
# https://github.com/NixOS/nixpkgs/pull/73586
|
|
"-Djasper=disabled"
|
|
];
|
|
|
|
# TODO: Fix missing math symbols in gegl seamless clone.
|
|
# It only appears when we use packaged poly2tri-c instead of vendored one.
|
|
NIX_CFLAGS_COMPILE = "-lm";
|
|
|
|
postPatch = ''
|
|
chmod +x tests/opencl/opencl_test.sh tests/buffer/buffer-tests-run.sh
|
|
patchShebangs tests/ff-load-save/tests_ff_load_save.sh tests/opencl/opencl_test.sh tests/buffer/buffer-tests-run.sh tools/xml_insert.sh
|
|
'';
|
|
|
|
# tests fail to connect to the com.apple.fonts daemon in sandboxed mode
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
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;
|
|
};
|
|
}
|