fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / ca / cargo-chef / package.nix
blobf5e20e0f1f348c9132cfd77b411f2b64286159f5
2   lib,
3   rustPlatform,
4   fetchCrate,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "cargo-chef";
9   version = "0.1.68";
11   src = fetchCrate {
12     inherit pname version;
13     hash = "sha256-NTFrNSEIzHppwOOjI3VadjhdV6EgGUmJzyX5JmTsJoI=";
14   };
16   cargoHash = "sha256-DoIkK/tj3AYt0vm7u7f4SmgOKbdQZv3ZunMFT68+37E=";
18   meta = with lib; {
19     description = "Cargo-subcommand to speed up Rust Docker builds using Docker layer caching";
20     mainProgram = "cargo-chef";
21     homepage = "https://github.com/LukeMathWalker/cargo-chef";
22     license = licenses.mit;
23     maintainers = with maintainers; [ kkharji ];
24   };