{ lib , rustPlatform , fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "toast"; version = "0.47.4"; src = fetchFromGitHub { owner = "stepchowfun"; repo = pname; rev = "v${version}"; sha256 = "sha256-9uIZPmvjRjR9rRVp+rfLEjp6yDmf+87OglKqOwlRSEQ="; }; cargoHash = "sha256-cO2mO7ZtFuoIs58Y53xb4q+Cr5V94WTEgYkOYB0aGvY="; 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 ]; }; }