Merge pull request #207398 from GoldsteinE/package/cargo-mommy
cargo-mommy: init at 0.1.1
This commit is contained in:
commit
ead8d4e9a0
3 changed files with 30 additions and 0 deletions
|
@ -5186,6 +5186,15 @@
|
||||||
githubId = 643494;
|
githubId = 643494;
|
||||||
name = "Cillian de Róiste";
|
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 = {
|
Gonzih = {
|
||||||
email = "gonzih@gmail.com";
|
email = "gonzih@gmail.com";
|
||||||
github = "Gonzih";
|
github = "Gonzih";
|
||||||
|
|
20
pkgs/development/tools/rust/cargo-mommy/default.nix
Normal file
20
pkgs/development/tools/rust/cargo-mommy/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -15412,6 +15412,7 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
||||||
};
|
};
|
||||||
cargo-modules = callPackage ../development/tools/rust/cargo-modules { };
|
cargo-modules = callPackage ../development/tools/rust/cargo-modules { };
|
||||||
|
cargo-mommy = callPackage ../development/tools/rust/cargo-mommy { };
|
||||||
cargo-msrv = callPackage ../development/tools/rust/cargo-msrv {
|
cargo-msrv = callPackage ../development/tools/rust/cargo-msrv {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue