pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / 7kaa / default.nix
blob2dd4d6722153614eb2ecdd992e4b5cba79247e7f
1 { lib
2 , stdenv
3 , gccStdenv
4 , autoreconfHook
5 , autoconf-archive
6 , pkg-config
7 , fetchurl
8 , fetchFromGitHub
9 , openal
10 , enet
11 , SDL2
12 , curl
13 , gettext
14 , libiconv
17 let
18   version = "2.15.6";
20   musicVersion = lib.versions.majorMinor version;
21   music = stdenv.mkDerivation {
22     pname = "7kaa-music";
23     version = musicVersion;
25     src = fetchurl {
26       url = "https://www.7kfans.com/downloads/7kaa-music-${musicVersion}.tar.bz2";
27       hash = "sha256-sNdntuJXGaFPXzSpN0SoAi17wkr2YnW+5U38eIaVwcM=";
28     };
30     installPhase = ''
31       mkdir -p $out
32       cp -r * $out/
33     '';
35     meta.license = lib.licenses.unfree;
36   };
38 gccStdenv.mkDerivation (finalAttrs: {
39   pname = "7kaa";
40   inherit version;
42   src = fetchFromGitHub {
43     owner = "the3dfxdude";
44     repo = "7kaa";
45     rev = "v${finalAttrs.version}";
46     hash = "sha256-kkM+kFQ+tGHS5NrVPeDMRWFQb7waESt8xOLfFGaGdgo=";
47   };
49   nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config ];
51   buildInputs = [ openal enet SDL2 curl gettext libiconv ];
53   preAutoreconf = ''
54     autoupdate
55   '';
57   hardeningDisable = lib.optionals (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin) [ "stackprotector" ];
59   postInstall = ''
60     mkdir $out/share/7kaa/MUSIC
61     cp -R ${music}/MUSIC $out/share/7kaa/
62     cp ${music}/COPYING-Music.txt $out/share/7kaa/MUSIC
63     cp ${music}/COPYING-Music.txt $out/share/doc/7kaa
64   '';
66   # Multiplayer is auto-disabled for non-x86 system
68   meta = with lib; {
69     homepage = "https://www.7kfans.com";
70     description = "GPL release of the Seven Kingdoms with multiplayer (available only on x86 platforms)";
71     license = licenses.gpl2Only;
72     platforms = platforms.x86_64 ++ platforms.aarch64;
73     maintainers = with maintainers; [ _1000101 ];
74   };