summary refs log tree commit diff
path: root/pkgs/development/libraries/gegl
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-01-30 19:13:53 +0100
committerJan Tojnar <jtojnar@gmail.com>2018-02-01 23:58:02 +0100
commite621f17274330378a45cad3265124929797d3703 (patch)
tree57b8be66d54951f6160d5b8212ad60416f33a7b6 /pkgs/development/libraries/gegl
parent27ac1bfaf9070e50a654afcf7a20d1c7de2c3759 (diff)
downloadnixpkgs-e621f17274330378a45cad3265124929797d3703.tar
nixpkgs-e621f17274330378a45cad3265124929797d3703.tar.gz
nixpkgs-e621f17274330378a45cad3265124929797d3703.tar.bz2
nixpkgs-e621f17274330378a45cad3265124929797d3703.tar.lz
nixpkgs-e621f17274330378a45cad3265124929797d3703.tar.xz
nixpkgs-e621f17274330378a45cad3265124929797d3703.tar.zst
nixpkgs-e621f17274330378a45cad3265124929797d3703.zip
gegl_0_3: loosen platforms
Diffstat (limited to 'pkgs/development/libraries/gegl')
-rw-r--r--pkgs/development/libraries/gegl/3.0.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gegl/3.0.nix b/pkgs/development/libraries/gegl/3.0.nix
index 6325efcbc2a..2bb773a17b8 100644
--- a/pkgs/development/libraries/gegl/3.0.nix
+++ b/pkgs/development/libraries/gegl/3.0.nix
@@ -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;
   };
 }