Unverified Commit e2f0896e authored by Mostly Void's avatar Mostly Void
Browse files

toast: init at 0.45.5

parent f30f5d82
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
  pname = "toast";
  version = "0.45.5";

  src = fetchFromGitHub {
    owner = "stepchowfun";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-7EF9DCT8Vg7aGOUlRG9c4Lv2EhCX/P9k4zQC6Ruqv0c=";
  };

  cargoSha256 = "sha256-tyZrNUT2i9i0yOqz1KqIuFSb4PO+fx1SNa+ZVNfIGfM=";

  checkFlags = [ "--skip=format::tests::code_str_display" ]; # fails

  meta = with lib; {
    description = "Containerize your development and continuous integration environments";
    homepage = "https://github.com/stepchowfun/toast";
    license = licenses.mit;
    maintainers = with maintainers; [ dit7ya ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1425,6 +1425,8 @@ with pkgs;
  tnat64 = callPackage ../tools/networking/tnat64 { };
  toast = callPackage ../development/tools/toast { };
  topicctl = callPackage ../tools/misc/topicctl { };
  ttchat = callPackage ../tools/misc/ttchat { };