mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
antimicro: init at 2.18
antimicro is a graphical program used to map keyboard keys and mouse controls to a gamepad. Useful for playing PC games with no gamepad or poor gamepad support.
This commit is contained in:
parent
7ca6742acc
commit
aba6c9e9cb
22
pkgs/tools/misc/antimicro/default.nix
Normal file
22
pkgs/tools/misc/antimicro/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, cmake, pkgconfig, SDL2, qt5, xlibs, fetchzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "antimicro-${version}";
|
||||||
|
version = "2.18";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "https://github.com/Ryochan7/antimicro/archive/${version}.tar.gz";
|
||||||
|
sha256 = "0kyl4xl2am50v2xscgy2irpcdj78f7flgfhljyjck4ynf8d40vb7";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
cmake pkgconfig SDL2 qt5.base qt5.tools xlibs.libXtst
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "GUI for mapping keyboard and mouse controls to a gamepad";
|
||||||
|
homepage = "https://github.com/Ryochan7/antimicro";
|
||||||
|
maintainers = with maintainers; [ jb55 ];
|
||||||
|
license = licenses.gpl3;
|
||||||
|
};
|
||||||
|
}
|
@ -14692,6 +14692,8 @@ let
|
|||||||
|
|
||||||
### MISC
|
### MISC
|
||||||
|
|
||||||
|
antimicro = callPackage ../tools/misc/antimicro { };
|
||||||
|
|
||||||
atari800 = callPackage ../misc/emulators/atari800 { };
|
atari800 = callPackage ../misc/emulators/atari800 { };
|
||||||
|
|
||||||
ataripp = callPackage ../misc/emulators/atari++ { };
|
ataripp = callPackage ../misc/emulators/atari++ { };
|
||||||
|
Loading…
Reference in New Issue
Block a user