Merge pull request #208280 from jakubpawlowicz/fix/openxcom-update
openxcom: 1.0.0.2019.10.18 -> 1.0.0.2023.08.12
This commit is contained in:
commit
09dd1d6b7f
1 changed files with 31 additions and 17 deletions
|
@ -1,40 +1,54 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
{ boost
|
||||
, cmake
|
||||
, pkg-config
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, libGLU
|
||||
, libGL
|
||||
, zlib
|
||||
, openssl
|
||||
, yaml-cpp
|
||||
, boost
|
||||
, pkg-config
|
||||
, SDL
|
||||
, SDL_image
|
||||
, SDL_mixer
|
||||
, SDL_gfx
|
||||
, stdenv
|
||||
, yaml-cpp
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation {
|
||||
pname = "openxcom";
|
||||
version = "1.0.0.2019.10.18";
|
||||
version = "1.0.0.2023.08.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "OpenXcom";
|
||||
repo = "OpenXcom";
|
||||
rev = "f9853b2cb8c8f741ac58707487ef493416d890a3";
|
||||
hash = "sha256-APv49ZT94oeM4KVKGtUdoQ1t8Ly8lsocr+FqXiRXbk0=";
|
||||
rev = "bd632cc8569a57fdc3b68ce53f6ea850422ec5ac";
|
||||
hash = "sha256-ouYZ4rAEluqeP+ZUrbEZwCpXCw0cZLWsf1GbIE3jaTc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [ SDL SDL_gfx SDL_image SDL_mixer boost yaml-cpp libGLU libGL openssl zlib ];
|
||||
buildInputs = [
|
||||
boost
|
||||
libGL
|
||||
libGLU
|
||||
SDL
|
||||
SDL_gfx
|
||||
SDL_image
|
||||
SDL_mixer
|
||||
yaml-cpp
|
||||
openssl
|
||||
zlib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "Open source clone of UFO: Enemy Unknown";
|
||||
homepage = "https://openxcom.org";
|
||||
maintainers = with maintainers; [ cpages ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3;
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ cpages ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue