nixpkgs/pkgs/applications/misc/evtest/default.nix

23 lines
598 B
Nix
Raw Normal View History

{ 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;
2013-05-21 07:20:00 +00:00
maintainers = [maintainers.bjornfor];
};
}