2016-01-18 00:04:40 +01:00
|
|
|
{ stdenv, fetchgit, autoreconfHook, automake, pkgconfig, libxml2 }:
|
2013-02-20 21:00:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-21 23:27:53 +02:00
|
|
|
name = "evtest-1.33";
|
2013-02-20 21:00:48 +01:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ libxml2 ];
|
2013-02-20 21:00:48 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://anongit.freedesktop.org/evtest";
|
2016-05-21 23:27:53 +02:00
|
|
|
rev = "refs/tags/evtest-1.33";
|
|
|
|
sha256 = "168gdhzj11f4nk94a6z696sm8v1njzwww69bn6wr97l17897913g";
|
2013-02-20 21:00:48 +01:00
|
|
|
};
|
|
|
|
|
2013-05-20 19:33:18 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-02-20 21:00:48 +01:00
|
|
|
description = "Simple tool for input event debugging";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-05-20 19:33:18 +02:00
|
|
|
platforms = platforms.linux;
|
2014-01-02 17:53:57 +01:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-02-20 21:00:48 +01:00
|
|
|
};
|
|
|
|
}
|