termscp: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-02-21 23:42:42 +01:00 committed by GitHub
parent 13c5fbef8b
commit 6c33bd35e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, dbus , dbus
, fetchFromGitHub , fetchFromGitHub
, openssl , openssl
@ -8,7 +9,6 @@
, Cocoa , Cocoa
, Foundation , Foundation
, Security , Security
, stdenv
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "veeso"; owner = "veeso";
repo = pname; repo = pname;
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-+5ljnCVbaiqqfXCJjMMInoLjLmZjCIoDkQi9pS6VKpc="; hash = "sha256-+5ljnCVbaiqqfXCJjMMInoLjLmZjCIoDkQi9pS6VKpc=";
}; };
@ -51,6 +51,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; { meta = with lib; {
description = "Terminal tool for file transfer and explorer"; description = "Terminal tool for file transfer and explorer";
homepage = "https://github.com/veeso/termscp"; homepage = "https://github.com/veeso/termscp";
changelog = "https://github.com/veeso/termscp/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };