2021-06-21 08:19:11 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, SDL2
|
|
|
|
, SDL2_image
|
|
|
|
, SDL2_mixer
|
|
|
|
, SDL2_net
|
|
|
|
, SDL2_ttf
|
|
|
|
, boost
|
|
|
|
, cmake
|
|
|
|
, curl
|
|
|
|
, doxygen
|
|
|
|
, gettext
|
|
|
|
, glew
|
|
|
|
, graphviz
|
|
|
|
, icu
|
|
|
|
, installShellFiles
|
|
|
|
, libpng
|
|
|
|
, lua
|
|
|
|
, python3
|
|
|
|
, zlib
|
2014-03-29 16:10:03 +01:00
|
|
|
}:
|
2011-04-17 19:55:29 +02:00
|
|
|
|
2017-02-15 07:11:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "widelands";
|
2021-06-21 08:19:11 +02:00
|
|
|
version = "1.0";
|
2011-04-17 19:55:29 +02:00
|
|
|
|
2021-06-21 08:19:11 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "widelands";
|
|
|
|
repo = "widelands";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-gNumYoeKePaxiAzrqEPKibMxFwv9vyBrCSoua+MKhcM=";
|
2011-04-17 19:55:29 +02:00
|
|
|
};
|
2014-03-29 16:10:03 +01:00
|
|
|
|
2021-06-21 08:19:11 +02:00
|
|
|
patches = [ ./bincmake.patch ];
|
2011-04-17 19:55:29 +02:00
|
|
|
|
2021-06-21 08:19:11 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace xdg/org.widelands.Widelands.desktop \
|
|
|
|
--replace 'Exec=widelands' "Exec=$out/bin/widelands"
|
2014-03-29 16:10:03 +01:00
|
|
|
'';
|
|
|
|
|
2021-06-21 08:19:11 +02:00
|
|
|
cmakeFlags = [
|
|
|
|
"-Wno-dev" # dev warnings are only needed for upstream development
|
|
|
|
"-DWL_INSTALL_BASEDIR=${placeholder "out"}"
|
|
|
|
"-DWL_INSTALL_DATADIR=${placeholder "out"}/share/widelands"
|
|
|
|
"-DWL_INSTALL_BINARY=${placeholder "out"}/bin"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake doxygen gettext graphviz installShellFiles ];
|
2014-03-29 16:10:03 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2021-06-21 08:19:11 +02:00
|
|
|
SDL2
|
|
|
|
SDL2_image
|
|
|
|
SDL2_mixer
|
|
|
|
SDL2_net
|
|
|
|
SDL2_ttf
|
|
|
|
boost
|
|
|
|
curl
|
|
|
|
glew
|
|
|
|
icu
|
|
|
|
libpng
|
|
|
|
lua
|
|
|
|
python3
|
|
|
|
zlib
|
2014-03-29 16:10:03 +01:00
|
|
|
];
|
|
|
|
|
2017-02-15 07:11:59 +01:00
|
|
|
postInstall = ''
|
2021-06-21 08:19:11 +02:00
|
|
|
install -Dm444 -t $out/share/applications ../xdg/org.widelands.Widelands.desktop
|
|
|
|
|
|
|
|
for s in 16 32 48 64 128; do
|
|
|
|
install -Dm444 ../data/images/logos/wl-ico-''${s}.png $out/share/icons/hicolor/''${s}x''${s}/org.widelands.Widelands.png
|
|
|
|
done
|
|
|
|
|
|
|
|
installManPage ../xdg/widelands.6
|
2017-02-15 07:11:59 +01:00
|
|
|
'';
|
2021-06-21 08:19:11 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "RTS with multiple-goods economy";
|
|
|
|
homepage = "https://widelands.org/";
|
|
|
|
longDescription = ''
|
|
|
|
Widelands is a real time strategy game based on "The Settlers" and "The
|
|
|
|
Settlers II". It has a single player campaign mode, as well as a networked
|
|
|
|
multiplayer mode.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ raskin jcumming ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
hydraPlatforms = [ ];
|
|
|
|
};
|
2014-03-29 16:10:03 +01:00
|
|
|
}
|