1{ mkDerivation, lib, qtbase, cmake, fetchFromGitHub }:
2
3mkDerivation rec {
4 pname = "evtest-qt";
5 version = "0.2.0";
6
7 src = fetchFromGitHub {
8 owner = "Grumbel";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "1wfzkgq81764qzxgk0y5vvpxcrb3icvrr4dd4mj8njrqgbwmn0mw";
12 };
13
14 nativeBuildInputs = [ cmake ];
15
16 buildInputs = [ qtbase ];
17
18 meta = with lib; {
19 description = "Simple input device tester for linux with Qt GUI";
20 homepage = "https://github.com/Grumbel/evtest-qt";
21 maintainers = with maintainers; [ alexarice ];
22 platforms = platforms.linux;
23 license = licenses.gpl3;
24 };
25}