Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / frogatto / engine.nix
blob95e2135660fdb8301bc7ad01a891341b2ee7dc2f
1 { lib, stdenv, fetchFromGitHub, fetchurl, which
2 , boost, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf
3 , glew, zlib, icu, pkg-config, cairo, libvpx, glm
4 }:
6 stdenv.mkDerivation {
7   pname = "anura-engine";
8   version = "unstable-2023-02-27";
10   src = fetchFromGitHub {
11     owner = "anura-engine";
12     repo = "anura";
13     rev = "65d85b6646099db1d5cd25d31321bb434a3f94f1";
14     sha256 = "sha256-hb4Sn7uI+eXLaGb4zkEy4w+ByQJ6FqkoMUYFsyiFCeE=";
15     fetchSubmodules = true;
16   };
18   nativeBuildInputs = [
19     which pkg-config
20   ];
22   buildInputs = [
23     boost
24     SDL2
25     SDL2_image
26     SDL2_mixer
27     SDL2_ttf
28     glew
29     zlib
30     icu
31     cairo
32     libvpx
33     glm
34   ];
36   enableParallelBuilding = true;
38   installPhase = ''
39     mkdir -p $out/bin $out/share/frogatto
40     cp -ar data images modules $out/share/frogatto/
41     cp -a anura $out/bin/frogatto
42   '';
44   meta = with lib; {
45     homepage = "https://github.com/anura-engine/anura";
46     description = "Game engine used by Frogatto";
47     license = licenses.zlib;
48     platforms = platforms.linux;
49     maintainers = with maintainers; [ astro ];
50   };