mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Merge pull request #146102 from kurnevsky/wesnoth
wesnoth: remove enableTools option as it was removed from wesnoth
This commit is contained in:
commit
974c2a13a1
@ -1,7 +1,6 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL2, SDL2_image, SDL2_mixer, SDL2_net, SDL2_ttf
|
||||
, pango, gettext, boost, libvorbis, fribidi, dbus, libpng, pcre, openssl, icu
|
||||
, Cocoa, Foundation
|
||||
, enableTools ? false
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -21,8 +20,6 @@ stdenv.mkDerivation rec {
|
||||
libvorbis fribidi dbus libpng pcre openssl icu ]
|
||||
++ lib.optionals stdenv.isDarwin [ Cocoa Foundation];
|
||||
|
||||
cmakeFlags = [ "-DENABLE_TOOLS=${if enableTools then "ON" else "OFF"}" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "The Battle for Wesnoth, a free, turn-based strategy game with a fantasy theme";
|
||||
longDescription = ''
|
||||
|
Loading…
Reference in New Issue
Block a user