Merge pull request #64684 from alexarice/evtest-qt

evtest-qt: init at 0.2.0
This commit is contained in:
Joachim F 2019-07-18 13:10:04 +00:00 committed by GitHub
commit 74bae348ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View File

@ -250,6 +250,11 @@
github = "akru";
name = "Alexander Krupenkin ";
};
alexarice = {
email = "alexrice999@hotmail.co.uk";
github = "alexarice";
name = "Alex Rice";
};
alexchapman = {
email = "alex@farfromthere.net";
github = "AJChapman";

View File

@ -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;
};
}

View File

@ -2842,6 +2842,8 @@ in
evtest = callPackage ../applications/misc/evtest { };
evtest-qt = libsForQt5.callPackage ../applications/misc/evtest-qt { };
exa = callPackage ../tools/misc/exa { };
exempi = callPackage ../development/libraries/exempi {