pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / hikounomizu / default.nix
blobf618d6680529b74b1aa0b239857df4ce874b673e
1 { lib
2 , stdenv
3 , fetchurl
4 , cmake
5 , pkg-config
6 , util-linux
7 , libGL
8 , freetype
9 , pugixml
10 , SDL2
11 , SDL2_image
12 , openal
13 , libogg
14 , libvorbis
15 , libGLU
16 , enet
17 , synfigstudio
18 , inkscape
19 , imagemagick
20 , pngquant
21 , xz
22 , bc
25 stdenv.mkDerivation (finalAttrs: {
26   pname = "hikounomizu";
27   version = "1.1";
29   src = fetchurl {
30     url = "http://download.tuxfamily.org/hnm/${finalAttrs.version}/hikounomizu-${finalAttrs.version}-src.tar.bz2";
31     hash = "sha256-rWy6m9Wc6w0PSSS8WUMeCNvXok2hRioKRGR6a1tyPks=";
32   };
34   nativeBuildInputs = [
35     cmake
36     pkg-config
37     # for make data
38     util-linux
39     synfigstudio.synfig
40     inkscape
41     imagemagick
42     pngquant
43     xz
44     bc
45   ];
47   buildInputs = [
48     libGL
49     freetype
50     pugixml
51     SDL2
52     SDL2_image
53     openal
54     libogg
55     libvorbis
56     libGLU
57     enet
58   ];
60   postBuild = ''
61     make data HNM_PARALLEL=$NIX_BUILD_CORES
62   '';
64   meta = with lib; {
65     description = "Free platform-based fighting game";
66     longDescription = ''
67       Hikou no mizu (ハイクの水) is a free platform-based fighting game,
68       licensed under the GNU GPL v3 (program) and the LAL (graphics).
69       It works on many operating systems including GNU/Linux, *BSD, Haiku,
70       OS X and Windows.
72       The characters use natural powers such as water or lightning,
73       but they can also (mostly for now) fight the traditional way!
74     '';
75     homepage = "https://hikounomizu.org/";
76     downloadPage = "https://hikounomizu.org/download.html";
77     maintainers = with maintainers; [ fgaz ];
78     license = [ licenses.gpl3Plus licenses.lal13 ];
79     platforms = platforms.all;
80   };