rates: refactor

- use hash
- add changelog to meta
This commit is contained in:
Fabian Affolter 2024-12-03 11:45:25 +01:00
parent 08061fddcc
commit ece89eabe5

View File

@ -11,9 +11,9 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "lunush";
repo = pname;
rev = version;
sha256 = "sha256-zw2YLTrvqbGKR8Dg5W+kJTDKIfro+MNyjHXfZMXZhaw=";
repo = "rates";
rev = "refs/tags/${version}";
hash = "sha256-zw2YLTrvqbGKR8Dg5W+kJTDKIfro+MNyjHXfZMXZhaw=";
};
cargoHash = "sha256-5EcTeMfa1GNp1q60qSgEi/I3298hXUD1Vc1K55XGW4I=";
@ -23,6 +23,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "CLI tool that brings currency exchange rates right into your terminal";
homepage = "https://github.com/lunush/rates";
changelog = "https://github.com/lunush/rates/releases/tag/${version}";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ fab ];
mainProgram = "rates";