Unverified Commit 19d3d332 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #141998 from fabaff/rates

rates: init at 0.5.0
parents cd62fdab 216d735f
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -32377,6 +32377,8 @@ with pkgs;
  qdl = callPackage ../tools/misc/qdl { };
  rates = callPackage ../tools/misc/rates { };
  rargs = callPackage ../tools/misc/rargs { };
  rancher = callPackage ../applications/networking/cluster/rancher { };