nixpkgs/pkgs/tools/misc/antimicro/default.nix
Alexander Ried 272c87fbdf antimicro 2.18 -> 2.18.2
The original repo was deleted by it's author. I took the one with
the most recent releases I could find.
See:
https://github.com/Ryochan7/antimicro-packaging/issues/1#issuecomment-205949365
2016-04-26 10:58:33 +02:00

25 lines
649 B
Nix

{ stdenv, cmake, pkgconfig, SDL2, qtbase, qttools, xorg, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "antimicro-${version}";
version = "2.18.2";
src = fetchFromGitHub {
owner = "7185";
repo = "antimicro";
rev = "${version}";
sha256 = "1mqw5idn57yj6c1w8y0byzh0xafcpbhaa6czgljh206abwfixjmk";
};
buildInputs = [
cmake pkgconfig SDL2 qtbase qttools 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;
};
}