nixpkgs/pkgs/games/openxcom/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
860 B
Nix
Raw Normal View History

{ boost
2022-05-23 01:11:59 +00:00
, cmake
, fetchFromGitHub
, lib
2022-05-23 01:11:59 +00:00
, libGLU
, libGL
, openssl
, pkg-config
2022-05-23 01:11:59 +00:00
, SDL
, SDL_image
, SDL_mixer
, SDL_gfx
, stdenv
, yaml-cpp
, zlib
2022-05-23 01:11:59 +00:00
}:
2014-06-14 09:58:00 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "openxcom";
version = "1.0.0.2024.02.28";
2022-05-23 01:11:59 +00:00
src = fetchFromGitHub {
owner = "OpenXcom";
repo = "OpenXcom";
rev = "e2c5a1b45c33957ce7e206207c5fb752c1e79ae1";
hash = "sha256-2G2dSvoDdacdYsXS51h3aGLCCjbHwcvD4CNnQIH/J6A=";
2014-06-14 09:58:00 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
];
2022-09-17 03:20:55 +00:00
buildInputs = [
boost
libGL
libGLU
SDL
SDL_gfx
SDL_image
SDL_mixer
yaml-cpp
openssl
zlib
];
meta = {
2014-06-14 09:58:00 +00:00
description = "Open source clone of UFO: Enemy Unknown";
mainProgram = "openxcom";
homepage = "https://openxcom.org";
license = lib.licenses.gpl3;
maintainers = [ ];
platforms = lib.platforms.linux;
2014-06-14 09:58:00 +00:00
};
}