From 9a4cb9003e32fdb1e07e044a7ee9b96bbebfa899 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Tue, 29 May 2018 21:19:45 -0400 Subject: wesnoth: supports darwin --- pkgs/games/wesnoth/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pkgs/games') diff --git a/pkgs/games/wesnoth/default.nix b/pkgs/games/wesnoth/default.nix index a30685338b00..12fb0bd60b0b 100644 --- a/pkgs/games/wesnoth/default.nix +++ b/pkgs/games/wesnoth/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image, SDL2_mixer, SDL2_net, SDL2_ttf , pango, gettext, boost, freetype, libvorbis, fribidi, dbus, libpng, pcre, openssl, icu +, Cocoa, Foundation , enableTools ? false }: @@ -17,7 +18,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkgconfig ]; buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_net SDL2_ttf pango gettext boost - libvorbis fribidi dbus libpng pcre openssl icu ]; + libvorbis fribidi dbus libpng pcre openssl icu ] + ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa Foundation]; cmakeFlags = [ "-DENABLE_TOOLS=${if enableTools then "ON" else "OFF"}" ]; @@ -36,6 +38,6 @@ stdenv.mkDerivation rec { homepage = http://www.wesnoth.org/; license = licenses.gpl2; maintainers = with maintainers; [ abbradar ]; - platforms = platforms.linux; + platforms = platforms.unix; }; } -- cgit 1.4.1