mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
openxcom: add version 1.0.0
This commit is contained in:
parent
25351ddf70
commit
d9ed7c5a9c
25
pkgs/games/openxcom/default.nix
Normal file
25
pkgs/games/openxcom/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{stdenv, fetchurl, cmake, mesa, zlib, openssl, libyamlcpp, boostHeaders
|
||||
, SDL, SDL_image, SDL_mixer, SDL_gfx }:
|
||||
|
||||
let version = "1.0.0"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "openxcom-${version}";
|
||||
src = fetchurl {
|
||||
url = http://openxcom.org/wp-content/plugins/download-monitor/download.php?id=31;
|
||||
sha256 = "00pc6ncsjbvn6w8whpj0bk4hlh577wh40bkyv6lk0g5c901p732l";
|
||||
name = "openxcom-${version}.tar.gz";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake mesa zlib openssl libyamlcpp boostHeaders
|
||||
SDL SDL_image SDL_mixer SDL_gfx ];
|
||||
|
||||
meta = {
|
||||
description = "Open source clone of UFO: Enemy Unknown";
|
||||
homepage = http://openxcom.org;
|
||||
repositories.git = https://github.com/SupSuper/OpenXcom.git;
|
||||
maintainers = [ stdenv.lib.maintainers.page ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = "GPLv3";
|
||||
};
|
||||
|
||||
}
|
@ -10071,6 +10071,8 @@ let
|
||||
|
||||
opentyrian = callPackage ../games/opentyrian { };
|
||||
|
||||
openxcom = callPackage ../games/openxcom { };
|
||||
|
||||
pingus = callPackage ../games/pingus {};
|
||||
|
||||
pioneers = callPackage ../games/pioneers { };
|
||||
|
Loading…
Reference in New Issue
Block a user