gegl_0_3: loosen platforms

This commit is contained in:
Jan Tojnar 2018-01-30 19:13:53 +01:00
parent 27ac1bfaf9
commit e621f17274
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
sha256 = "1zr3gmmzjhp2d3d3h51x80r5q7gs9rv67ywx69sif6as99h8fbqm";
};
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
hardeningDisable = [ "format" ];
# needs fonts otherwise don't know how to pass them
@ -28,11 +30,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool which autoreconfHook ];
meta = {
meta = with stdenv.lib; {
description = "Graph-based image processing framework";
homepage = http://www.gegl.org;
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ jtojnar ];
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl3;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.unix;
};
}