about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-21 23:42:42 +0100
committerGitHub <noreply@github.com>2023-02-21 23:42:42 +0100
commit6c33bd35e2016923f057c8ad5f7b01a7812dbfa9 (patch)
treede603e20405c0156f37d965db0578ff7cc9ac18c /pkgs/tools
parent13c5fbef8b77c67424d69a8299cd2e6a9d8b8f2f (diff)
termscp: add changelog to meta
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/termscp/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/networking/termscp/default.nix b/pkgs/tools/networking/termscp/default.nix
index 0eac2744280d4..4a65620e48b77 100644
--- a/pkgs/tools/networking/termscp/default.nix
+++ b/pkgs/tools/networking/termscp/default.nix
@@ -1,4 +1,5 @@
 { lib
+, stdenv
 , dbus
 , fetchFromGitHub
 , openssl
@@ -8,7 +9,6 @@
 , Cocoa
 , Foundation
 , Security
-, stdenv
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec {
   src = fetchFromGitHub {
     owner = "veeso";
     repo = pname;
-    rev = "v${version}";
+    rev = "refs/tags/v${version}";
     hash = "sha256-+5ljnCVbaiqqfXCJjMMInoLjLmZjCIoDkQi9pS6VKpc=";
   };
 
@@ -51,6 +51,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "Terminal tool for file transfer and explorer";
     homepage = "https://github.com/veeso/termscp";
+    changelog = "https://github.com/veeso/termscp/blob/v${version}/CHANGELOG.md";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ fab ];
   };