8248ad3929
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gegl/versions.
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, glib, babl, libpng, cairo, libjpeg, which
|
|
, librsvg, pango, gtk, bzip2, json-glib, intltool, autoreconfHook, libraw
|
|
, libwebp, gnome3, libintl }:
|
|
|
|
let
|
|
version = "0.4.6";
|
|
in stdenv.mkDerivation rec {
|
|
name = "gegl-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.gimp.org/pub/gegl/${stdenv.lib.versions.majorMinor version}/${name}.tar.bz2";
|
|
sha256 = "1rcsa60z09jjayk0q6jam4w8rivh400a08bv2xykiv5qyr1yp5zk";
|
|
};
|
|
|
|
# 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-4.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;
|
|
};
|
|
}
|