nixpkgs/pkgs/tools/wayland/wtype/default.nix
Roosembert Palacios f782b23bbd
wtype: 2020-09-14 -> 0.3
Signed-off-by: Roosembert Palacios <roosemberth@posteo.ch>
2021-01-06 16:40:43 +01:00

35 lines
659 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, libxkbcommon
, wayland
}:
stdenv.mkDerivation rec {
pname = "wtype";
version = "0.3";
src = fetchFromGitHub {
owner = "atx";
repo = "wtype";
rev = "v${version}";
hash = "sha256-8q2PxI3ItR4tsP/KOiSlqnuK4ZSe7OdekheolEFVmys=";
};
nativeBuildInputs = [ meson ninja pkg-config wayland ];
buildInputs = [ libxkbcommon wayland ];
meta = with lib; {
description = "xdotool type for wayland";
homepage = "https://github.com/atx/wtype";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ justinlovinger ];
};
}