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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
601 B
Nix
Raw Normal View History

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