about summary refs log tree commit diff
path: root/pkgs/applications/video/showmethekey/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/showmethekey/default.nix')
-rw-r--r--pkgs/applications/video/showmethekey/default.nix51
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/applications/video/showmethekey/default.nix b/pkgs/applications/video/showmethekey/default.nix
deleted file mode 100644
index ef30ed13784c0..0000000000000
--- a/pkgs/applications/video/showmethekey/default.nix
+++ /dev/null
@@ -1,51 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, meson
-, ninja
-, libevdev
-, json-glib
-, libinput
-, gtk4
-, libadwaita
-, wrapGAppsHook4
-, libxkbcommon
-, pkg-config
-}:
-
-stdenv.mkDerivation rec {
-  pname = "showmethekey";
-  version = "1.13.0";
-
-  src = fetchFromGitHub {
-    owner = "AlynxZhou";
-    repo = "showmethekey";
-    rev = "refs/tags/v${version}";
-    hash = "sha256-pVFkO/+a7GAOXbYBfU0zcO/uD26PX+y02bEZa3f1ZP8=";
-  };
-
-  nativeBuildInputs = [
-    meson
-    ninja
-    json-glib
-    pkg-config
-    wrapGAppsHook4
-  ];
-
-  buildInputs = [
-    gtk4
-    libadwaita
-    libevdev
-    libinput
-    libxkbcommon
-  ];
-
-  meta = with lib; {
-    description = "Show keys you typed on screen";
-    homepage = "https://showmethekey.alynx.one/";
-    changelog = "https://github.com/AlynxZhou/showmethekey/releases/tag/v${version}";
-    license = licenses.asl20;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ ocfox ];
-  };
-}