depot/third_party/nixpkgs/pkgs/development/tools/rust/cargo-mommy/default.nix

21 lines
567 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "cargo-mommy";
version = "0.3.1";
src = fetchCrate {
inherit pname version;
hash = "sha256-2WR6xUYL/bLgZlI4ADbPAtdLq0y4MoVP8Loxdu/58Wc=";
};
cargoHash = "sha256-iQt6eTCcpzhFnrDkUmT4x7JX+Z7fWdW5ovbB/9Ui7Sw=";
meta = with lib; {
description = "Cargo wrapper that encourages you after running commands";
homepage = "https://github.com/Gankra/cargo-mommy";
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ GoldsteinE ];
};
}