nixpkgs/pkgs/development/tools/toast/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
681 B
Nix
Raw Normal View History

2022-10-29 10:25:54 +02:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "toast";
2023-04-11 03:01:01 +02:00
version = "0.47.1";
2022-10-29 10:25:54 +02:00
src = fetchFromGitHub {
owner = "stepchowfun";
repo = pname;
rev = "v${version}";
2023-04-11 03:01:01 +02:00
sha256 = "sha256-CW7rPylP3Swyv+rxwbeooUC6XEkmGCCpGEqM7zNG1b4=";
2022-10-29 10:25:54 +02:00
};
2023-04-11 03:01:01 +02:00
cargoHash = "sha256-yO0wcijM8q81g/HSmouHduUb12kaNVRIv4pECs8XyFw=";
2022-10-29 10:25:54 +02: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 ];
};
}