biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / emulators / retroarch / retroarch-assets.nix
blobe9f2cb9379f2ae13c1ef103a8e92e8e8253c0434
1 { lib
2 , stdenvNoCC
3 , fetchFromGitHub
4 , unstableGitUpdater
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "retroarch-assets";
9   version = "1.19.0-unstable-2024-09-22";
11   src = fetchFromGitHub {
12     owner = "libretro";
13     repo = "retroarch-assets";
14     rev = "1b138de1023272b039273d7bbc8f57573073bd25";
15     hash = "sha256-ZePPjNQtzO3e7d9ZqbkfXX+0saus2X77It2l1e7WDWc=";
16   };
18   makeFlags = [
19     "PREFIX=$(out)"
20     # By default install in $(PREFIX)/share/libretro/assets
21     # that is not in RetroArch's assets path
22     "INSTALLDIR=$(PREFIX)/share/retroarch/assets"
23   ];
25   dontBuild = true;
27   passthru.updateScript = unstableGitUpdater {
28     tagPrefix = "v";
29   };
31   meta = with lib; {
32     description = "Assets needed for RetroArch";
33     homepage = "https://libretro.com";
34     license = licenses.mit;
35     maintainers = with maintainers; teams.libretro.members ++ [ ];
36     platforms = platforms.all;
37   };