mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
23 lines
598 B
Nix
23 lines
598 B
Nix
{ stdenv, fetchgit, autoconf, automake, pkgconfig, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "evtest-1.32";
|
|
|
|
preConfigure = "autoreconf -iv";
|
|
|
|
buildInputs = [ autoconf automake pkgconfig libxml2 ];
|
|
|
|
src = fetchgit {
|
|
url = "git://anongit.freedesktop.org/evtest";
|
|
rev = "refs/tags/evtest-1.32";
|
|
sha256 = "150lb7d2gnkcqgfw1hcnb8lcvdb52fpig9j9qxjizp6irhlw2a31";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simple tool for input event debugging";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|