gegl_0_3: disable format hardening, add autoreconfHook
This commit is contained in:
parent
f0d0164a38
commit
c1f1fd68cc
1 changed files with 7 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, glib, babl, libpng, cairo, libjpeg, which
|
{ stdenv, fetchurl, pkgconfig, glib, babl, libpng, cairo, libjpeg, which
|
||||||
, librsvg, pango, gtk, bzip2, intltool, libtool, automake, autoconf, json_glib }:
|
, librsvg, pango, gtk, bzip2, json_glib, intltool, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gegl-0.3.6";
|
name = "gegl-0.3.6";
|
||||||
|
@ -9,15 +9,16 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "08m7dlf2kwmp7jw3qskwxas192swhn1g4jcd8aldg9drfjygprvh";
|
sha256 = "08m7dlf2kwmp7jw3qskwxas192swhn1g4jcd8aldg9drfjygprvh";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureScript = "./autogen.sh";
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
# needs fonts otherwise don't know how to pass them
|
# needs fonts otherwise don't know how to pass them
|
||||||
configureFlags = "--disable-docs";
|
configureFlags = "--disable-docs";
|
||||||
|
|
||||||
buildInputs = [ babl libpng cairo libjpeg librsvg pango gtk bzip2 intltool
|
buildInputs = [
|
||||||
autoconf automake libtool which json_glib ];
|
babl libpng cairo libjpeg librsvg pango gtk bzip2 which json_glib intltool
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Graph-based image processing framework";
|
description = "Graph-based image processing framework";
|
||||||
|
|
Loading…
Reference in a new issue