biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-mommy / default.nix
blobe62f87969d7c4c9a0af7365b9f38945ef97eac6f
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-mommy";
5   version = "0.3.1";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-2WR6xUYL/bLgZlI4ADbPAtdLq0y4MoVP8Loxdu/58Wc=";
10   };
12   cargoHash = "sha256-iQt6eTCcpzhFnrDkUmT4x7JX+Z7fWdW5ovbB/9Ui7Sw=";
14   meta = with lib; {
15     description = "Cargo wrapper that encourages you after running commands";
16     mainProgram = "cargo-mommy";
17     homepage = "https://github.com/Gankra/cargo-mommy";
18     license = with licenses; [ mit asl20 ];
19     maintainers = with maintainers; [ GoldsteinE ];
20   };