summary refs log tree commit diff
path: root/pkgs/tools/wayland/wev/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/wayland/wev/default.nix')
-rw-r--r--pkgs/tools/wayland/wev/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/tools/wayland/wev/default.nix b/pkgs/tools/wayland/wev/default.nix
new file mode 100644
index 00000000000..83e4113f7ea
--- /dev/null
+++ b/pkgs/tools/wayland/wev/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, stdenv
+, fetchurl
+, pkg-config
+, scdoc
+, wayland
+, wayland-protocols
+, libxkbcommon
+}:
+
+stdenv.mkDerivation rec {
+  pname = "wev";
+  version = "1.0.0";
+
+  src = fetchurl {
+    url = "https://git.sr.ht/~sircmpwn/wev/archive/${version}.tar.gz";
+    sha256 = "0vlxdkb59v6nb10j28gh1a56sx8jk7ak7liwzv911kpmygnls03g";
+  };
+
+  nativeBuildInputs = [ pkg-config scdoc wayland ];
+  buildInputs = [ wayland-protocols libxkbcommon ];
+
+  installFlags = [ "PREFIX=$(out)" ];
+
+  meta = with lib; {
+    homepage = "https://git.sr.ht/~sircmpwn/wev";
+    description = "Wayland event viewer";
+    longDescription = ''
+      This is a tool for debugging events on a Wayland window, analagous to the
+      X11 tool xev.
+    '';
+    license = licenses.mit;
+    maintainers = with maintainers; [ primeos ];
+    platforms = platforms.unix;
+  };
+}