rates: init at 0.5.0
This commit is contained in:
parent
cb10e4ddf6
commit
216d735fad
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/misc/rates/default.nix
Normal file
25
pkgs/tools/misc/rates/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rates";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lunush";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "077qxs4kwfprsai07dninkhmj3ihnghdxan98iv8gmsl3pijbgwh";
|
||||
};
|
||||
|
||||
cargoSha256 = "041sskiq152iywwqd8p7aqsqzbj359zl7ilnp8ahzdqprz3slk1w";
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI tool that brings currency exchange rates right into your terminal";
|
||||
homepage = "https://github.com/lunush/rates";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -32324,6 +32324,8 @@ with pkgs;
|
|||
|
||||
qdl = callPackage ../tools/misc/qdl { };
|
||||
|
||||
rates = callPackage ../tools/misc/rates { };
|
||||
|
||||
rargs = callPackage ../tools/misc/rargs { };
|
||||
|
||||
rancher = callPackage ../applications/networking/cluster/rancher { };
|
||||
|
|
Loading…
Reference in a new issue