lol
1{ lib
2, rustPlatform
3, fetchFromGitHub
4}:
5
6rustPlatform.buildRustPackage rec {
7 pname = "toast";
8 version = "0.47.5";
9
10 src = fetchFromGitHub {
11 owner = "stepchowfun";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-kAXzBJMAxHjZSK6lbpF+/27n9CGvq7x6Ay2TaFYgQSU=";
15 };
16
17 cargoHash = "sha256-681ZFS8dtn815VYdFwPEJXnuMGTycSuRPDxmj1kN3rs=";
18
19 checkFlags = [ "--skip=format::tests::code_str_display" ]; # fails
20
21 meta = with lib; {
22 description = "Containerize your development and continuous integration environments";
23 homepage = "https://github.com/stepchowfun/toast";
24 license = licenses.mit;
25 maintainers = with maintainers; [ dit7ya ];
26 };
27}