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