Files

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

34 lines
651 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchgit,
autoreconfHook,
pkg-config,
libxml2,
}:
stdenv.mkDerivation rec {
pname = "evtest";
version = "1.36";
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [ libxml2 ];
src = fetchgit {
url = "git://anongit.freedesktop.org/${pname}";
rev = "refs/tags/${pname}-${version}";
sha256 = "sha256-M7AGcHklErfRIOu64+OU397OFuqkAn4dqZxx7sDfklc=";
};
meta = with lib; {
description = "Simple tool for input event debugging";
license = lib.licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
mainProgram = "evtest";
};
}