2021-02-16 03:23:16 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2021-03-13 11:33:02 +00:00
|
|
|
, fetchFromSourcehut
|
2021-02-16 03:23:16 +00:00
|
|
|
, pkg-config
|
|
|
|
, scdoc
|
2021-07-03 15:02:23 +00:00
|
|
|
, wayland-scanner
|
2021-02-16 03:23:16 +00:00
|
|
|
, wayland
|
|
|
|
, wayland-protocols
|
|
|
|
, libxkbcommon
|
2019-08-25 18:11:30 +00:00
|
|
|
}:
|
|
|
|
|
2020-03-23 13:45:14 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "wev";
|
|
|
|
version = "1.0.0";
|
2019-08-25 18:11:30 +00:00
|
|
|
|
2021-03-13 11:33:02 +00:00
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~sircmpwn";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0l71v3fzgiiv6xkk365q1l08qvaymxd4kpaya6r2g8yzkr7i2hms";
|
2019-08-25 18:11:30 +00:00
|
|
|
};
|
|
|
|
|
2023-03-07 15:58:12 +00:00
|
|
|
strictDeps = true;
|
2022-05-09 14:18:15 +00:00
|
|
|
# for scdoc
|
|
|
|
depsBuildBuild = [
|
|
|
|
pkg-config
|
|
|
|
];
|
2021-07-03 15:02:23 +00:00
|
|
|
nativeBuildInputs = [ pkg-config scdoc wayland-scanner ];
|
|
|
|
buildInputs = [ wayland wayland-protocols libxkbcommon ];
|
2019-08-25 18:11:30 +00:00
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-02-16 03:23:16 +00:00
|
|
|
homepage = "https://git.sr.ht/~sircmpwn/wev";
|
2019-08-25 18:11:30 +00:00
|
|
|
description = "Wayland event viewer";
|
|
|
|
longDescription = ''
|
2022-12-18 00:39:44 +00:00
|
|
|
This is a tool for debugging events on a Wayland window, analogous to the
|
2019-08-25 18:11:30 +00:00
|
|
|
X11 tool xev.
|
|
|
|
'';
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
2023-03-05 12:59:54 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
|
2019-08-25 18:11:30 +00:00
|
|
|
};
|
|
|
|
}
|