about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorCosima Neidahl <opna2608@protonmail.com>2024-05-13 15:49:49 +0200
committerGitHub <noreply@github.com>2024-05-13 15:49:49 +0200
commit068c0e3c956eb0738beb212b6331a59c4fec7df5 (patch)
tree658817164889345f1047dc1ce6313ba292b5b0f3 /pkgs/tools
parent693abb01bc884149b98e644353086a65e9effbee (diff)
parent8621da969e26c435da5608351b44a84a947fa6e4 (diff)
Merge pull request #303745 from quantenzitrone/ydotool
ydotool: refactor ; nixos/ydotool: init module & nixosTest
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/wayland/ydotool/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/wayland/ydotool/default.nix b/pkgs/tools/wayland/ydotool/default.nix
deleted file mode 100644
index 42f95735de597..0000000000000
--- a/pkgs/tools/wayland/ydotool/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, cmake, scdoc, util-linux, xorg }:
-
-stdenv.mkDerivation rec {
-  pname = "ydotool";
-  version = "1.0.4";
-
-  src = fetchFromGitHub {
-    owner = "ReimuNotMoe";
-    repo = "ydotool";
-    rev = "v${version}";
-    hash = "sha256-MtanR+cxz6FsbNBngqLE+ITKPZFHmWGsD1mBDk0OVng=";
-  };
-
-  postPatch = ''
-    substituteInPlace Daemon/ydotoold.c \
-      --replace "/usr/bin/xinput" "${xorg.xinput}/bin/xinput"
-    substituteInPlace Daemon/ydotool.service.in \
-      --replace "/usr/bin/kill" "${util-linux}/bin/kill"
-  '';
-
-  strictDeps = true;
-  nativeBuildInputs = [ cmake scdoc ];
-
-  meta = with lib; {
-    homepage = "https://github.com/ReimuNotMoe/ydotool";
-    description = "Generic Linux command-line automation tool";
-    license = licenses.agpl3Plus;
-    maintainers = with maintainers; [ willibutz kraem ];
-    platforms = with platforms; linux;
-  };
-}