2013-02-20 21:00:48 +01:00
|
|
|
{ stdenv, fetchgit, autoconf, automake, pkgconfig, libxml2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-07-19 16:20:27 +02:00
|
|
|
name = "evtest-1.31";
|
2013-02-20 21:00:48 +01:00
|
|
|
|
|
|
|
preConfigure = "autoreconf -iv";
|
|
|
|
|
|
|
|
buildInputs = [ autoconf automake pkgconfig libxml2 ];
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://anongit.freedesktop.org/evtest";
|
2013-07-19 16:20:27 +02:00
|
|
|
rev = "871371806017301373b8b0e5b7e8f168ce1ea13f";
|
|
|
|
sha256 = "1hxldlldlrb9lnnybn839a97fpqd1cixbmci2wzgr0rzhjbwhcgp";
|
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";
|
|
|
|
license = "GPLv2";
|
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
|
|
|
};
|
|
|
|
}
|