about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-02 15:44:29 +0200
committerGitHub <noreply@github.com>2024-05-02 15:44:29 +0200
commit0741e65506475017239491263677d211137d4756 (patch)
tree4a191d4116ba6778b05fcb8e51bd77c46e5668ac
parent47e7228ec8c7be22c6766e090361e981ed75b6e2 (diff)
showmethekey: add changelog to meta
- minor refactoring
-rw-r--r--pkgs/applications/video/showmethekey/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/applications/video/showmethekey/default.nix b/pkgs/applications/video/showmethekey/default.nix
index e67fbdc1ca22e..ef30ed13784c0 100644
--- a/pkgs/applications/video/showmethekey/default.nix
+++ b/pkgs/applications/video/showmethekey/default.nix
@@ -12,14 +12,15 @@
 , libxkbcommon
 , pkg-config
 }:
+
 stdenv.mkDerivation rec {
   pname = "showmethekey";
   version = "1.13.0";
 
   src = fetchFromGitHub {
     owner = "AlynxZhou";
-    repo = pname;
-    rev = "v${version}";
+    repo = "showmethekey";
+    rev = "refs/tags/v${version}";
     hash = "sha256-pVFkO/+a7GAOXbYBfU0zcO/uD26PX+y02bEZa3f1ZP8=";
   };
 
@@ -40,8 +41,9 @@ stdenv.mkDerivation rec {
   ];
 
   meta = with lib; {
-    homepage = "https://showmethekey.alynx.one/";
     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 ];