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

23 lines
601 B
Nix
Raw Normal View History

{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, libxml2 }:
stdenv.mkDerivation rec {
2019-09-03 02:48:35 +03:00
pname = "evtest";
version = "1.34";
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libxml2 ];
src = fetchgit {
2019-09-03 02:48:35 +03:00
url = "git://anongit.freedesktop.org/${pname}";
rev = "refs/tags/${pname}-${version}";
2016-05-22 00:27:53 +03:00
sha256 = "168gdhzj11f4nk94a6z696sm8v1njzwww69bn6wr97l17897913g";
};
meta = with lib; {
description = "Simple tool for input event debugging";
2021-01-15 08:42:41 +03:00
license = lib.licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}