2022-10-29 08:25:54 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "toast";
|
2023-06-24 12:19:55 +00:00
|
|
|
version = "0.47.5";
|
2022-10-29 08:25:54 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stepchowfun";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-06-24 12:19:55 +00:00
|
|
|
sha256 = "sha256-kAXzBJMAxHjZSK6lbpF+/27n9CGvq7x6Ay2TaFYgQSU=";
|
2022-10-29 08:25:54 +00:00
|
|
|
};
|
|
|
|
|
2023-06-24 12:19:55 +00:00
|
|
|
cargoHash = "sha256-681ZFS8dtn815VYdFwPEJXnuMGTycSuRPDxmj1kN3rs=";
|
2022-10-29 08:25:54 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|