nixpkgs/pkgs/tools/misc/antimicro/default.nix

30 lines
760 B
Nix
Raw Normal View History

2017-03-21 20:33:40 +00:00
{ stdenv, cmake, pkgconfig, SDL2, qtbase, qttools, makeQtWrapper, xorg, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "antimicro-${version}";
2017-02-19 20:47:04 +00:00
version = "2.23";
src = fetchFromGitHub {
owner = "AntiMicro";
repo = "antimicro";
rev = "${version}";
2017-02-19 20:47:04 +00:00
sha256 = "1q40ayxwwyq85lc89cnj1cm2nar625h4vhh8dvmb2qcxczaggf4v";
};
buildInputs = [
2017-03-21 20:33:40 +00:00
cmake pkgconfig SDL2 qtbase qttools xorg.libXtst makeQtWrapper
];
2017-03-21 20:33:40 +00:00
postInstall = ''
wrapQtProgram $out/bin/antimicro
'';
meta = with stdenv.lib; {
description = "GUI for mapping keyboard and mouse controls to a gamepad";
inherit (src.meta) homepage;
maintainers = with maintainers; [ jb55 ];
license = licenses.gpl3;
platforms = with platforms; linux;
};
}