wev: 2019-08-11 -> 1.0.0

This commit is contained in:
Michael Weiss 2020-03-23 14:45:14 +01:00
parent d7a3ee6daa
commit 868f1ceb30
No known key found for this signature in database
GPG key ID: 5BE487C4D4771D83

View file

@ -1,22 +1,19 @@
{ stdenv, fetchurl { stdenv, fetchurl
, pkg-config, scdoc , pkg-config, scdoc, wayland
, wayland, wayland-protocols, libxkbcommon , wayland-protocols, libxkbcommon
}: }:
let stdenv.mkDerivation rec {
version = "2019-08-11"; pname = "wev";
commit = "47d17393473be152cf601272faf5704fff1c3f92"; version = "1.0.0";
in stdenv.mkDerivation {
pname = "wev-unstable";
inherit version;
src = fetchurl { src = fetchurl {
url = "https://git.sr.ht/~sircmpwn/wev/archive/${commit}.tar.gz"; url = "https://git.sr.ht/~sircmpwn/wev/archive/${version}.tar.gz";
sha256 = "0a5kvrviz77bf7357gqs2iy7a1bvb3izgkmiv1rdxzzmihd563ga"; sha256 = "0vlxdkb59v6nb10j28gh1a56sx8jk7ak7liwzv911kpmygnls03g";
}; };
nativeBuildInputs = [ pkg-config scdoc ]; nativeBuildInputs = [ pkg-config scdoc wayland ];
buildInputs = [ wayland wayland-protocols libxkbcommon ]; buildInputs = [ wayland-protocols libxkbcommon ];
installFlags = [ "PREFIX=$(out)" ]; installFlags = [ "PREFIX=$(out)" ];
@ -26,7 +23,7 @@ in stdenv.mkDerivation {
This is a tool for debugging events on a Wayland window, analagous to the This is a tool for debugging events on a Wayland window, analagous to the
X11 tool xev. X11 tool xev.
''; '';
homepage = https://git.sr.ht/~sircmpwn/wev; homepage = "https://git.sr.ht/~sircmpwn/wev";
license = licenses.mit; license = licenses.mit;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ primeos ]; maintainers = with maintainers; [ primeos ];