about summary refs log tree commit diff
path: root/pkgs/applications/misc/tickrs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-25 15:29:03 +0100
committerGitHub <noreply@github.com>2023-02-25 15:29:03 +0100
commitd453e293ea73184bcafe273a9fa69e5b99976840 (patch)
tree1765bfbe97ec7c5ae7c331009c83a02d6b53725b /pkgs/applications/misc/tickrs
parent74217b6a867dae1646ced0601b266fe8131246d9 (diff)
tickrs: add changelog to meta
Diffstat (limited to 'pkgs/applications/misc/tickrs')
-rw-r--r--pkgs/applications/misc/tickrs/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/misc/tickrs/default.nix b/pkgs/applications/misc/tickrs/default.nix
index 12efc5348799d..b28a740501ba3 100644
--- a/pkgs/applications/misc/tickrs/default.nix
+++ b/pkgs/applications/misc/tickrs/default.nix
@@ -7,8 +7,8 @@ rustPlatform.buildRustPackage rec {
   src = fetchFromGitHub {
     owner = "tarkah";
     repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-8q/dL1Pv25TkL7PESybgIu+0lR0cr6qrK6ItE/r9pbI=";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-8q/dL1Pv25TkL7PESybgIu+0lR0cr6qrK6ItE/r9pbI=";
   };
 
   cargoHash = "sha256-fOYxOiVpgflwIz9Z6ePhQKDa7DX4D/ZCnPOwq9vWOSk=";
@@ -20,6 +20,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "Realtime ticker data in your terminal";
     homepage = "https://github.com/tarkah/tickrs";
+    changelog = "https://github.com/tarkah/tickrs/blob/v${version}/CHANGELOG.md";
     license = licenses.mit;
     maintainers = with maintainers; [ mredaelli ];
   };