biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / libretro-2048 / default.nix
blob67644444d8912caf0469140f4854661b1ecb2935
1 { lib, buildKodiBinaryAddon, fetchFromGitHub, libretro, twenty-fortyeight }:
3 buildKodiBinaryAddon rec {
4   pname = "libretro-2048";
5   namespace = "game.libretro.2048";
6   version = "1.0.0.136";
8   src = fetchFromGitHub {
9     owner = "kodi-game";
10     repo = "game.libretro.2048";
11     rev = "${version}-Nexus";
12     hash = "sha256-cIo56ZGansBlAj6CFw51UOYJUivN9n1qhVTWAX9c5Tc=";
13   };
15   extraCMakeFlags = [
16     "-D2048_LIB=${twenty-fortyeight}/lib/retroarch/cores/2048_libretro.so"
17   ];
19   extraBuildInputs = [ twenty-fortyeight ];
20   propagatedBuildInputs = [
21     libretro
22   ];
24   meta = with lib; {
25     homepage = "https://github.com/kodi-game/game.libretro.2048";
26     description = "2048 GameClient for Kodi";
27     platforms = platforms.all;
28     license = licenses.publicDomain;
29     maintainers = with maintainers; teams.kodi.members ++ [ kazenyuk ];
30   };