biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-chef / default.nix
blob27cc6e1042d78baffaa6d8ee95aa1d5b5d70b2c9
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-chef";
5   version = "0.1.66";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-I4lD3+WFaW0kPmw5lPybDCRkG/at6VQH6l7pmngwoLU=";
10   };
12   cargoHash = "sha256-tSr4m10zS+/JynGmNY0+aoiYDATYwuyfr1VGKmIkHg4=";
14   meta = with lib; {
15     description = "A cargo-subcommand to speed up Rust Docker builds using Docker layer caching";
16     mainProgram = "cargo-chef";
17     homepage = "https://github.com/LukeMathWalker/cargo-chef";
18     license = licenses.mit;
19     maintainers = with maintainers; [ kkharji ];
20   };