Merge pull request #64684 from alexarice/evtest-qt
evtest-qt: init at 0.2.0
This commit is contained in:
commit
74bae348ef
@ -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";
|
||||
|
25
pkgs/applications/misc/evtest-qt/default.nix
Normal file
25
pkgs/applications/misc/evtest-qt/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user