Merge pull request #141998 from fabaff/rates

rates: init at 0.5.0

authored by

figsoda and committed by
GitHub
19d3d332 cd62fdab

+27
+25
pkgs/tools/misc/rates/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , rustPlatform 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "rates"; 8 + version = "0.5.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "lunush"; 12 + repo = pname; 13 + rev = version; 14 + sha256 = "077qxs4kwfprsai07dninkhmj3ihnghdxan98iv8gmsl3pijbgwh"; 15 + }; 16 + 17 + cargoSha256 = "041sskiq152iywwqd8p7aqsqzbj359zl7ilnp8ahzdqprz3slk1w"; 18 + 19 + meta = with lib; { 20 + description = "CLI tool that brings currency exchange rates right into your terminal"; 21 + homepage = "https://github.com/lunush/rates"; 22 + license = with licenses; [ asl20 /* or */ mit ]; 23 + maintainers = with maintainers; [ fab ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 32377 32377 32378 32378 qdl = callPackage ../tools/misc/qdl { }; 32379 32379 32380 + rates = callPackage ../tools/misc/rates { }; 32381 + 32380 32382 rargs = callPackage ../tools/misc/rargs { }; 32381 32383 32382 32384 rancher = callPackage ../applications/networking/cluster/rancher { };