nixpkgs/pkgs/by-name/ca/cargo-mommy/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
600 B
Nix
Raw Normal View History

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