nixpkgs/pkgs/tools/misc/wev/default.nix

32 lines
829 B
Nix
Raw Normal View History

2019-08-25 20:11:30 +02:00
{ stdenv, fetchurl
2020-03-23 14:45:14 +01:00
, pkg-config, scdoc, wayland
, wayland-protocols, libxkbcommon
2019-08-25 20:11:30 +02:00
}:
2020-03-23 14:45:14 +01:00
stdenv.mkDerivation rec {
pname = "wev";
version = "1.0.0";
2019-08-25 20:11:30 +02:00
src = fetchurl {
2020-03-23 14:45:14 +01:00
url = "https://git.sr.ht/~sircmpwn/wev/archive/${version}.tar.gz";
sha256 = "0vlxdkb59v6nb10j28gh1a56sx8jk7ak7liwzv911kpmygnls03g";
2019-08-25 20:11:30 +02:00
};
2020-03-23 14:45:14 +01:00
nativeBuildInputs = [ pkg-config scdoc wayland ];
buildInputs = [ wayland-protocols libxkbcommon ];
2019-08-25 20:11:30 +02:00
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "Wayland event viewer";
longDescription = ''
This is a tool for debugging events on a Wayland window, analagous to the
X11 tool xev.
'';
2020-03-23 14:45:14 +01:00
homepage = "https://git.sr.ht/~sircmpwn/wev";
2019-08-25 20:11:30 +02:00
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}