uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
38
pkgs/games/openxcom/default.nix
Normal file
38
pkgs/games/openxcom/default.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, libGLU
|
||||
, libGL
|
||||
, zlib
|
||||
, openssl
|
||||
, libyamlcpp
|
||||
, boost
|
||||
, SDL
|
||||
, SDL_image
|
||||
, SDL_mixer
|
||||
, SDL_gfx
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "openxcom";
|
||||
version = "1.0.0.2019.10.18";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "OpenXcom";
|
||||
repo = "OpenXcom";
|
||||
rev = "f9853b2cb8c8f741ac58707487ef493416d890a3";
|
||||
hash = "sha256-APv49ZT94oeM4KVKGtUdoQ1t8Ly8lsocr+FqXiRXbk0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ SDL SDL_gfx SDL_image SDL_mixer boost libyamlcpp libGLU libGL openssl zlib ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Open source clone of UFO: Enemy Unknown";
|
||||
homepage = "https://openxcom.org";
|
||||
maintainers = with maintainers; [ cpages ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue