biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / emulators / retroarch / retroarch-joypad-autoconfig.nix
blob36bc02c43f7d3e1b8e8e7c685043b2d30c90a529
1 { lib
2 , stdenvNoCC
3 , fetchFromGitHub
4 , gitUpdater
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "retroarch-joypad-autoconfig";
9   version = "1.19.0";
11   src = fetchFromGitHub {
12     owner = "libretro";
13     repo = "retroarch-joypad-autoconfig";
14     rev = "v${version}";
15     hash = "sha256-iwxTMwGHix2K5UyjBWFamyo3nVULxwbIF+djyQWz5L0=";
16   };
18   makeFlags = [
19     "PREFIX=$(out)"
20   ];
22   passthru.updateScript = gitUpdater {
23     rev-prefix = "v";
24   };
26   meta = with lib; {
27     description = "Joypad autoconfig files";
28     homepage = "https://www.libretro.com/";
29     license = licenses.mit;
30     maintainers = with maintainers; teams.libretro.members ++ [ ];
31     platforms = platforms.all;
32   };