antimicro 2.3 -> antimicroX 3.0

Antimicro is broken an no longer maintained (and doesn't compile).
AntimicroX is a fork that does compile, so this removes antimicro and
adds antimicroX.
This commit is contained in:
Kovacsics Robert
2020-08-06 16:28:26 +01:00
parent 9d21fe813f
commit 1e6f11a2d0
4 changed files with 46 additions and 28 deletions
-27
View File
@@ -1,27 +0,0 @@
{ mkDerivation, lib, cmake, pkgconfig, SDL2, qtbase, qttools, xorg, fetchFromGitHub }:
mkDerivation rec {
pname = "antimicro";
version = "2.23";
src = fetchFromGitHub {
owner = "AntiMicro";
repo = "antimicro";
rev = version;
sha256 = "1q40ayxwwyq85lc89cnj1cm2nar625h4vhh8dvmb2qcxczaggf4v";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
SDL2 qtbase qttools xorg.libXtst
];
meta = with 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;
broken = true; # 2018-04-10
};
}
+44
View File
@@ -0,0 +1,44 @@
{ mkDerivation
, lib
, cmake
, extra-cmake-modules
, pkgconfig
, SDL2
, qtbase
, qttools
, qtx11extras
, xorg
, fetchFromGitHub
, itstool
}:
mkDerivation rec {
pname = "antimicroX";
version = "3.0";
src = fetchFromGitHub {
owner = "juliagoda";
repo = "antimicroX";
rev = version;
sha256 = "0li22sjl95233azxhyda36idnfzbb4b02wf57hnpnba6qvrlpwwl";
};
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig itstool ];
buildInputs = [
SDL2
qtbase
qttools
qtx11extras
xorg.libX11
xorg.libXtst
xorg.libXi
];
meta = with lib; {
description = "GUI for mapping keyboard and mouse controls to a gamepad";
inherit (src.meta) homepage;
maintainers = with maintainers; [ jb55 ];
license = licenses.gpl3Plus;
platforms = with platforms; linux;
};
}