retroarch-joypad-autoconfig: init at 1.15.0
https://github.com/libretro/retroarch-joypad-autoconfig (In preparation for making joypads work out-of-the-box in RetroArch.)
This commit is contained in:
parent
801cc44765
commit
35c3c81655
2 changed files with 30 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
||||||
|
{ lib
|
||||||
|
, stdenvNoCC
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation rec {
|
||||||
|
pname = "retroarch-joypad-autoconfig";
|
||||||
|
version = "1.15.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "libretro";
|
||||||
|
repo = "retroarch-joypad-autoconfig";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-/F2Y08uDA/pIIeLiLfOQfGVjX2pkuOqPourlx2RbZ28=";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"PREFIX=$(out)"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Joypad autoconfig files";
|
||||||
|
homepage = "https://www.libretro.com/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; teams.libretro.members ++ [ ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2655,6 +2655,8 @@ with pkgs;
|
||||||
|
|
||||||
retroarch-assets = callPackage ../applications/emulators/retroarch/retroarch-assets.nix { };
|
retroarch-assets = callPackage ../applications/emulators/retroarch/retroarch-assets.nix { };
|
||||||
|
|
||||||
|
retroarch-joypad-autoconfig = callPackage ../applications/emulators/retroarch/retroarch-joypad-autoconfig.nix { };
|
||||||
|
|
||||||
libretranslate = with python3.pkgs; toPythonApplication libretranslate;
|
libretranslate = with python3.pkgs; toPythonApplication libretranslate;
|
||||||
|
|
||||||
libretro = recurseIntoAttrs
|
libretro = recurseIntoAttrs
|
||||||
|
|
Loading…
Reference in a new issue