summary refs log tree commit diff
path: root/pkgs/applications/misc/evtest/default.nix
blob: c91c9fe20c3f1ba12522711ced2c4294963824a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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";
  };

  meta = with stdenv.lib; {
    description = "Simple tool for input event debugging";
    license = "GPLv2";
    platforms = platforms.linux;
    maintainers = maintainers.bjornfor;
  };
}