2016-04-26 09:45:48 +01:00
|
|
|
{ stdenv, cmake, pkgconfig, SDL2, qtbase, qttools, xorg, fetchFromGitHub }:
|
2015-08-17 04:05:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "antimicro-${version}";
|
2016-04-26 09:45:48 +01:00
|
|
|
version = "2.18.2";
|
2015-08-17 04:05:14 +01:00
|
|
|
|
2016-04-26 09:45:48 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "7185";
|
|
|
|
repo = "antimicro";
|
|
|
|
rev = "${version}";
|
|
|
|
sha256 = "1mqw5idn57yj6c1w8y0byzh0xafcpbhaa6czgljh206abwfixjmk";
|
2015-08-17 04:05:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2015-12-20 00:31:25 +00:00
|
|
|
cmake pkgconfig SDL2 qtbase qttools xorg.libXtst
|
2015-08-17 04:05:14 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|