504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
20 lines
567 B
Nix
20 lines
567 B
Nix
{ 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 ];
|
|
};
|
|
}
|