toast: init at 0.45.5

This commit is contained in:
Mostly Void 2022-10-29 13:55:54 +05:30
parent f30f5d82bc
commit e2f0896eb9
No known key found for this signature in database
GPG Key ID: E2B7342D0CAA82C2
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ 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 ];
};
}

View File

@ -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 { };