28 lines
681 B
Nix
28 lines
681 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "toast";
|
|
version = "0.46.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stepchowfun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-3ng1nVl5eqpa3YWqT/RYZo9sBl6Zkyc8NabG1GpjapQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-22DtD0PeuDK1Gwy28ZD02LJYgOYuowf+pDQjHXiT6+A=";
|
|
|
|
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 ];
|
|
};
|
|
}
|