3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/wayland/wev/default.nix

40 lines
877 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromSourcehut
, pkg-config
, scdoc
, wayland-scanner
, wayland
, wayland-protocols
, libxkbcommon
2019-08-25 19:11:30 +01:00
}:
2020-03-23 13:45:14 +00:00
stdenv.mkDerivation rec {
pname = "wev";
version = "1.0.0";
2019-08-25 19:11:30 +01:00
src = fetchFromSourcehut {
owner = "~sircmpwn";
repo = pname;
rev = version;
sha256 = "0l71v3fzgiiv6xkk365q1l08qvaymxd4kpaya6r2g8yzkr7i2hms";
2019-08-25 19:11:30 +01:00
};
nativeBuildInputs = [ pkg-config scdoc wayland-scanner ];
buildInputs = [ wayland wayland-protocols libxkbcommon ];
2019-08-25 19:11:30 +01:00
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://git.sr.ht/~sircmpwn/wev";
2019-08-25 19:11:30 +01:00
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;
2019-08-25 19:11:30 +01:00
};
}