Merge pull request #9289 from jb55/antimicro-patch

antimicro: init at 2.18
This commit is contained in:
Arseniy Seroka 2015-08-19 14:45:12 +03:00
commit e197085b45
2 changed files with 24 additions and 0 deletions

View 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;
};
}

View file

@ -14713,6 +14713,8 @@ let
### MISC
antimicro = callPackage ../tools/misc/antimicro { };
atari800 = callPackage ../misc/emulators/atari800 { };
ataripp = callPackage ../misc/emulators/atari++ { };