base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / to / toast / package.nix
bloba7fa40f035b1571dd57ea5144f49418903cd7961
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "toast";
8   version = "0.47.6";
10   src = fetchFromGitHub {
11     owner = "stepchowfun";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-+qntd687LF4tJwHZglZ6mppHq3dOZ+l431oKBBNDI0k=";
15   };
17   cargoHash = "sha256-A2sJ0o0RDztk3NjxG0CD8wNA4tmOizY4Tvff6ADzYQ8=";
19   checkFlags = [ "--skip=format::tests::code_str_display" ]; # fails
21   meta = with lib; {
22     description = "Containerize your development and continuous integration environments";
23     mainProgram = "toast";
24     homepage = "https://github.com/stepchowfun/toast";
25     license = licenses.mit;
26     maintainers = with maintainers; [ dit7ya ];
27   };