evtest-qt: init at 0.2.0

This commit is contained in:
Alex Rice
2019-07-12 23:12:24 +01:00
parent 4b6ae9f831
commit f68f61d243
2 changed files with 27 additions and 0 deletions
@@ -0,0 +1,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;
};
}