summary refs log tree commit diff
path: root/pkgs/applications/misc/evtest/default.nix
blob: 635775e75ac7f17a306b20670c47445a13fc406e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchgit, autoconf, automake, pkgconfig, libxml2 }:

stdenv.mkDerivation rec {
  name = "evtest-1.31";

  preConfigure = "autoreconf -iv";

  buildInputs = [ autoconf automake pkgconfig libxml2 ];

  src = fetchgit {
    url = "git://anongit.freedesktop.org/evtest";
    rev = "871371806017301373b8b0e5b7e8f168ce1ea13f";
    sha256 = "1hxldlldlrb9lnnybn839a97fpqd1cixbmci2wzgr0rzhjbwhcgp";
  };

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