1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
{
lib,
SDL2,
SDL2_image,
SDL2_mixer,
SDL2_ttf,
boost,
cmake,
fetchFromGitHub,
gettext,
gitUpdater,
ninja,
physfs,
pkg-config,
stdenv,
zip,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "blockattack";
version = "2.9.0";
src = fetchFromGitHub {
owner = "blockattack";
repo = "blockattack-game";
rev = "v${finalAttrs.version}";
hash = "sha256-6mPj6A7mYm4CXkSSemNPn1CPkd7+01yr8KvCBM3a5po=";
};
nativeBuildInputs = [
SDL2
cmake
ninja
pkg-config
gettext
zip
];
buildInputs = [
SDL2
SDL2_image
SDL2_mixer
SDL2_ttf
SDL2_ttf
boost
physfs
];
outputs = [
"out"
"man"
];
strictDeps = true;
preConfigure = ''
patchShebangs packdata.sh source/misc/translation/*.sh
chmod +x ./packdata.sh
./packdata.sh
'';
passthru = {
updateScript = gitUpdater { };
};
meta = {
homepage = "https://blockattack.net/";
description = "Open source clone of Panel de Pon (aka Tetris Attack)";
broken = stdenv.hostPlatform.isDarwin;
changelog = "https://github.com/blockattack/blockattack-game/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = with lib.licenses; [ gpl2Plus ];
mainProgram = "blockattack";
maintainers = with lib.maintainers; [ AndersonTorres ];
inherit (SDL2.meta) platforms;
};
})
|