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