nixpkgs/pkgs/development/tools/rust/cargo-mommy/default.nix
2022-12-25 10:09:48 +03:00

21 lines
571 B
Nix

{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "cargo-mommy";
version = "0.1.1";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-p1SAYUQu1HpYJ6TbLJ3lfA9VlKHvB7z5yiFXmTQOCXA=";
};
cargoSha256 = "sha256-5RidY+6EF23UNzz1suSdA4LL59FalipaJ+ISSsmiCXM=";
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 ];
};
}