aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/misc/antimicroX/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/antimicroX/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/misc/antimicroX/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/antimicroX/default.nix b/nixpkgs/pkgs/tools/misc/antimicroX/default.nix
new file mode 100644
index 00000000000..cb5496d450c
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/antimicroX/default.nix
@@ -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.1";
+
+ src = fetchFromGitHub {
+ owner = "juliagoda";
+ repo = "antimicroX";
+ rev = version;
+ sha256 = "05asxlkgb4cgvpcyksw1cx8cz8nzi8hmw8b91lw92892j7a2r7wj";
+ };
+
+ 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;
+ };
+}