2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, libxml2 }:
|
2013-02-20 20:00:48 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-09-03 00:48:35 +01:00
|
|
|
pname = "evtest";
|
|
|
|
version = "1.34";
|
2013-02-20 20:00:48 +00:00
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ libxml2 ];
|
2013-02-20 20:00:48 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
2019-09-03 00:48:35 +01:00
|
|
|
url = "git://anongit.freedesktop.org/${pname}";
|
|
|
|
rev = "refs/tags/${pname}-${version}";
|
2016-05-21 22:27:53 +01:00
|
|
|
sha256 = "168gdhzj11f4nk94a6z696sm8v1njzwww69bn6wr97l17897913g";
|
2013-02-20 20:00:48 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-02-20 20:00:48 +00:00
|
|
|
description = "Simple tool for input event debugging";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = lib.licenses.gpl2;
|
2013-05-20 18:33:18 +01:00
|
|
|
platforms = platforms.linux;
|
2014-01-02 16:53:57 +00:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-02-20 20:00:48 +00:00
|
|
|
};
|
|
|
|
}
|