forked from mirrors/nixpkgs
wev: init at 2019-08-11
This commit is contained in:
parent
3f36ec5d33
commit
aec95ecf0d
34
pkgs/tools/misc/wev/default.nix
Normal file
34
pkgs/tools/misc/wev/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, fetchurl
|
||||
, pkg-config, scdoc
|
||||
, wayland, wayland-protocols, libxkbcommon
|
||||
}:
|
||||
|
||||
let
|
||||
version = "2019-08-11";
|
||||
commit = "47d17393473be152cf601272faf5704fff1c3f92";
|
||||
in stdenv.mkDerivation {
|
||||
pname = "wev-unstable";
|
||||
inherit version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://git.sr.ht/~sircmpwn/wev/archive/${commit}.tar.gz";
|
||||
sha256 = "0a5kvrviz77bf7357gqs2iy7a1bvb3izgkmiv1rdxzzmihd563ga";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config scdoc ];
|
||||
buildInputs = [ wayland wayland-protocols libxkbcommon ];
|
||||
|
||||
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.
|
||||
'';
|
||||
homepage = https://git.sr.ht/~sircmpwn/wev;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
}
|
|
@ -2804,6 +2804,8 @@ in
|
|||
|
||||
wallutils = callPackage ../tools/graphics/wallutils { };
|
||||
|
||||
wev = callPackage ../tools/misc/wev { };
|
||||
|
||||
wl-clipboard = callPackage ../tools/misc/wl-clipboard { };
|
||||
|
||||
z-lua = callPackage ../tools/misc/z-lua { };
|
||||
|
|
Loading…
Reference in a new issue