Merge pull request #207398 from GoldsteinE/package/cargo-mommy

cargo-mommy: init at 0.1.1
This commit is contained in:
Jonas Heinrich 2022-12-25 10:31:04 +01:00 committed by GitHub
commit ead8d4e9a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 0 deletions

View File

@ -5186,6 +5186,15 @@
githubId = 643494;
name = "Cillian de Róiste";
};
GoldsteinE = {
email = "root@goldstein.rs";
github = "GoldsteinE";
githubId = 12019211;
name = "Maximilian Siling";
keys = [{
fingerprint = "0BAF 2D87 CB43 746F 6237 2D78 DE60 31AB A0BB 269A";
}];
};
Gonzih = {
email = "gonzih@gmail.com";
github = "Gonzih";

View File

@ -0,0 +1,20 @@
{ 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 ];
};
}

View File

@ -15412,6 +15412,7 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};
cargo-modules = callPackage ../development/tools/rust/cargo-modules { };
cargo-mommy = callPackage ../development/tools/rust/cargo-mommy { };
cargo-msrv = callPackage ../development/tools/rust/cargo-msrv {
inherit (darwin.apple_sdk.frameworks) Security;
};