summary refs log tree commit diff
path: root/pkgs/tools/wayland/wtype
diff options
context:
space:
mode:
authorJustin Lovinger <git@justinlovinger.com>2020-09-27 18:36:34 -0400
committerJustin Lovinger <git@justinlovinger.com>2020-09-27 18:36:34 -0400
commitd93e6842d42f7c50885458d2e73cd18ef48c9967 (patch)
tree079c4e6c36e3fb3b928747e6f99f83aee84c04c2 /pkgs/tools/wayland/wtype
parent1d85b1465150cfea778bca38925271675cdebf1b (diff)
downloadnixpkgs-d93e6842d42f7c50885458d2e73cd18ef48c9967.tar
nixpkgs-d93e6842d42f7c50885458d2e73cd18ef48c9967.tar.gz
nixpkgs-d93e6842d42f7c50885458d2e73cd18ef48c9967.tar.bz2
nixpkgs-d93e6842d42f7c50885458d2e73cd18ef48c9967.tar.lz
nixpkgs-d93e6842d42f7c50885458d2e73cd18ef48c9967.tar.xz
nixpkgs-d93e6842d42f7c50885458d2e73cd18ef48c9967.tar.zst
nixpkgs-d93e6842d42f7c50885458d2e73cd18ef48c9967.zip
wtype: init at 2020-09-14
Diffstat (limited to 'pkgs/tools/wayland/wtype')
-rw-r--r--pkgs/tools/wayland/wtype/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/tools/wayland/wtype/default.nix b/pkgs/tools/wayland/wtype/default.nix
new file mode 100644
index 00000000000..a1c4744318e
--- /dev/null
+++ b/pkgs/tools/wayland/wtype/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+
+, meson
+, ninja
+, pkg-config
+
+, libxkbcommon
+, wayland
+}:
+
+stdenv.mkDerivation {
+  pname = "wtype";
+  version = "2020-09-14";
+
+  src = fetchFromGitHub {
+    owner = "atx";
+    repo = "wtype";
+    rev = "74071228dea4047157ae82960a2541ecc431e4a1";
+    sha256 = "1ncspxpnbwv1vkfmxs58q7aykjb6skaa1pg5sw5h798pss5j80rd";
+  };
+
+  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 ];
+  };
+}