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
57
pkgs/games/teeworlds/default.nix
Normal file
57
pkgs/games/teeworlds/default.nix
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
{ fetchFromGitHub, lib, stdenv, cmake, pkg-config, python3, alsa-lib
|
||||
, libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack, icoutils
|
||||
, nixosTests
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "teeworlds";
|
||||
version = "0.7.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "teeworlds";
|
||||
repo = "teeworlds";
|
||||
rev = version;
|
||||
sha256 = "1l19ksmimg6b8zzjy0skyhh7z11ql7n5gvilkv7ay5x2b9ndbqwz";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
# set compiled-in DATA_DIR so resources can be found
|
||||
substituteInPlace src/engine/shared/storage.cpp \
|
||||
--replace '#define DATA_DIR "data"' \
|
||||
'#define DATA_DIR "${placeholder "out"}/share/teeworlds/data"'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config icoutils ];
|
||||
|
||||
buildInputs = [
|
||||
python3 alsa-lib libX11 libGLU SDL2 lua5_3 zlib freetype wavpack
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
# Convert and install desktop icon
|
||||
mkdir -p $out/share/pixmaps
|
||||
icotool --extract --index 1 --output $out/share/pixmaps/teeworlds.png $src/other/icons/teeworlds.ico
|
||||
|
||||
# Install menu item
|
||||
install -D $src/other/teeworlds.desktop $out/share/applications/teeworlds.desktop
|
||||
'';
|
||||
|
||||
passthru.tests.teeworlds = nixosTests.teeworlds;
|
||||
|
||||
meta = {
|
||||
description = "Retro multiplayer shooter game";
|
||||
|
||||
longDescription = ''
|
||||
Teeworlds is a free online multiplayer game, available for all
|
||||
major operating systems. Battle with up to 12 players in a
|
||||
variety of game modes, including Team Deathmatch and Capture The
|
||||
Flag. You can even design your own maps!
|
||||
'';
|
||||
|
||||
homepage = "https://teeworlds.com/";
|
||||
license = "BSD-style, see `license.txt'";
|
||||
maintainers = with lib.maintainers; [ astsmtl ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue