nixpkgs/pkgs/tools/misc/antimicro/default.nix
Vladimír Čunát 88c9f8b574 xlibs: replace occurrences by xorg
This seems to have been confusing people, using both xlibs and xorg, etc.
- Avoided renaming local (and different) xlibs binding in gcc*.
- Fixed cases where both xorg and xlibs were used.
Hopefully everything still works as before.
2015-09-15 12:54:34 +02:00

23 lines
637 B
Nix

{ stdenv, cmake, pkgconfig, SDL2, qt5, xorg, 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 xorg.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;
};
}