pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / openclonk / default.nix
blobbbc1c3be11c7ff449ab83c4ab5ea44f13bfc5e57
1 { lib, stdenv, fetchurl, fetchFromGitHub, fetchDebianPatch, cmake, pkg-config
2 , SDL2, libvorbis, libogg, libjpeg, libpng, freetype, glew, tinyxml, openal, libepoxy
3 , curl
4 , freealut, readline, libb2, gcc-unwrapped
5 , enableSoundtrack ? false # Enable the "Open Clonk Soundtrack - Explorers Journey" by David Oerther
6 }:
8 let
9   soundtrack_src = fetchurl {
10     url = "http://www.openclonk.org/download/Music.ocg";
11     sha256 = "1ckj0dlpp5zsnkbb5qxxfxpkiq76jj2fgj91fyf3ll7n0gbwcgw5";
12   };
13 in stdenv.mkDerivation rec {
14   version = "unstable-2023-10-30";
15   pname = "openclonk";
17   src = fetchFromGitHub {
18     owner = "openclonk";
19     repo = "openclonk";
20     rev = "5275334a11ef7c23ce809f35d6b443abd91b415f";
21     sha256 = "14x5b2rh739156l4072rbsnv9n862jz1zafi6ng158ja5fwl16l2";
22   };
24   patches = [
25     (fetchDebianPatch {
26       pname = "openclonk";
27       version = "8.1";
28       debianRevision = "3";
29       patch = "system-libb2.patch";
30       hash = "sha256-zuH6zxSQXRhnt75092Xwb6XYv8UG391E5Arbnr7ApiI=";
31     })
32   ];
34   enableParallelInstalling = false;
36   postInstall = ''
37   '' + lib.optionalString enableSoundtrack ''
38     ln -sv ${soundtrack_src} $out/share/games/openclonk/Music.ocg
39   '';
41   nativeBuildInputs = [ cmake pkg-config ];
43   buildInputs = [
44     SDL2 libvorbis libogg libjpeg libpng freetype glew tinyxml openal freealut
45     libepoxy curl
46     readline libb2
47   ];
49   cmakeFlags = [ "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar" "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib" ];
51   cmakeBuildType = "RelWithDebInfo";
53   meta = with lib; {
54     description = "Free multiplayer action game in which you control clonks, small but witty and nimble humanoid beings";
55     homepage = "https://www.openclonk.org";
56     license = if enableSoundtrack then licenses.unfreeRedistributable else licenses.isc;
57     mainProgram = "openclonk";
58     maintainers = [ ];
59     platforms = [ "x86_64-linux" "i686-linux" ];
60   };