2013-02-20 21:00:48 +01:00
|
|
|
{ stdenv, fetchgit, autoconf, automake, pkgconfig, libxml2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "evtest-1.30";
|
|
|
|
|
|
|
|
preConfigure = "autoreconf -iv";
|
|
|
|
|
|
|
|
buildInputs = [ autoconf automake pkgconfig libxml2 ];
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://anongit.freedesktop.org/evtest";
|
|
|
|
rev = "1a50f2479c4775e047f234a24d95dda82441bfbd";
|
|
|
|
};
|
|
|
|
|
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;
|
2013-05-21 09:20:00 +02:00
|
|
|
maintainers = [maintainers.bjornfor];
|
2013-02-20 21:00:48 +01:00
|
|
|
};
|
|
|
|
}
|