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