mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #235580 from gador/gamepad-tool
gamepad-tool: init at 1.2
This commit is contained in:
commit
9dd2595daf
2 changed files with 48 additions and 0 deletions
46
pkgs/games/gamepad-tool/default.nix
Normal file
46
pkgs/games/gamepad-tool/default.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{ stdenvNoCC, fetchurl, dpkg, lib, qt5, autoPatchelfHook, SDL2 }:
|
||||
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "gamepad-tool";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://generalarcade.com/gamepadtool/linux/gamepadtool_${finalAttrs.version}_amd64.deb";
|
||||
hash = "sha256-ZuB0TOyT2B5QkU1o5h3/8PL85tBq06hlz5YclRanD88=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ dpkg qt5.wrapQtAppsHook autoPatchelfHook ];
|
||||
|
||||
unpackCmd = ''
|
||||
mkdir -p root
|
||||
dpkg-deb -x $curSrc root
|
||||
'';
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
buildInputs = [
|
||||
SDL2
|
||||
qt5.qtbase
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin $out/share/applications
|
||||
cp usr/bin/gamepad-tool $out/bin
|
||||
cp -r usr/share/icons $out/share/icons
|
||||
substitute usr/share/applications/gamepad-tool-debian.desktop \
|
||||
$out/share/applications/gamepad-tool.desktop \
|
||||
--replace "Exec=gamepad-tool" "Exec=$out/bin/gamepad-tool" \
|
||||
--replace "/usr/share/icons/hicolor/256x256/apps/gamepad-tool.png" "$out/share/icons/hicolor/256x256/apps/gamepad-tool.png"
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple GUI tool to create/modify gamepad mappings for games that use SDL2 Game Controller API";
|
||||
homepage = "https://generalarcade.com/gamepadtool/";
|
||||
license = licenses.unfree;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with maintainers; [ gador ];
|
||||
};
|
||||
})
|
|
@ -36168,6 +36168,8 @@ with pkgs;
|
|||
|
||||
freenukum = callPackage ../games/freenukum { };
|
||||
|
||||
gamepad-tool = callPackage ../games/gamepad-tool { };
|
||||
|
||||
gnome-hexgl = callPackage ../games/gnome-hexgl { };
|
||||
|
||||
gotypist = callPackage ../games/gotypist { };
|
||||
|
|
Loading…
Reference in a new issue