lol
1{ stdenv, fetchgit, autoconf, automake, pkgconfig, libxml2 }:
2
3stdenv.mkDerivation rec {
4 name = "evtest-1.32";
5
6 preConfigure = "autoreconf -iv";
7
8 buildInputs = [ autoconf automake pkgconfig libxml2 ];
9
10 src = fetchgit {
11 url = "git://anongit.freedesktop.org/evtest";
12 rev = "refs/tags/evtest-1.32";
13 sha256 = "150lb7d2gnkcqgfw1hcnb8lcvdb52fpig9j9qxjizp6irhlw2a31";
14 };
15
16 meta = with stdenv.lib; {
17 description = "Simple tool for input event debugging";
18 license = stdenv.lib.licenses.gpl2;
19 platforms = platforms.linux;
20 maintainers = [ maintainers.bjornfor ];
21 };
22}