nixpkgs/pkgs/applications/misc/evtest-qt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
616 B
Nix
Raw Normal View History

{ mkDerivation, lib, qtbase, cmake, fetchFromGitHub }:
2019-07-12 22:12:24 +00:00
mkDerivation rec {
2019-07-12 22:12:24 +00:00
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; {
2019-07-12 22:12:24 +00:00
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;
};
}