gimp: build on Darwin

+3 -2
+3 -2
pkgs/applications/graphics/gimp/2.8.nix
··· 28 28 #configureFlags = [ "--disable-print" ]; 29 29 30 30 # "screenshot" needs this. 31 - NIX_LDFLAGS = "-rpath ${xlibs.libX11}/lib"; 31 + NIX_LDFLAGS = "-rpath ${xlibs.libX11}/lib" 32 + + stdenv.lib.optionalString stdenv.isDarwin " -lintl"; 32 33 33 34 meta = { 34 35 description = "The GNU Image Manipulation Program"; 35 36 homepage = http://www.gimp.org/; 36 37 license = stdenv.lib.licenses.gpl3Plus; 37 - platforms = stdenv.lib.platforms.linux; 38 + platforms = stdenv.lib.platforms.unix; 38 39 }; 39 40 }