summary refs log blame commit diff
path: root/pkgs/applications/misc/evtest-qt/default.nix
blob: 86f2d00709237b5fc91aa06808cb8d21a397dfab (plain) (tree)
1
2
3
                                                      
 
                  













                                                                    
                    






                                                                     
{ mkDerivation, lib, qtbase, cmake, fetchFromGitHub }:

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