4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, 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 {
|
|
pname = "wesnoth";
|
|
version = "1.14.14";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = version;
|
|
owner = "wesnoth";
|
|
repo = "wesnoth";
|
|
sha256 = "0rawcm3d1qwf4wxqcbjipl6h30sfv7z70viji28q4givi5hysvka";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_net SDL2_ttf pango gettext boost
|
|
libvorbis fribidi dbus libpng pcre openssl icu ]
|
|
++ stdenv.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 = ''
|
|
The Battle for Wesnoth is a Free, turn-based tactical strategy
|
|
game with a high fantasy theme, featuring both single-player, and
|
|
online/hotseat multiplayer combat. Fight a desperate battle to
|
|
reclaim the throne of Wesnoth, or take hand in any number of other
|
|
adventures.
|
|
'';
|
|
|
|
homepage = "https://www.wesnoth.org/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|