tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
cargo-mommy: init at 0.1.1
Goldstein
3 years ago
86313e73
59c0fde9
+21
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
rust
cargo-mommy
default.nix
top-level
all-packages.nix
+20
pkgs/development/tools/rust/cargo-mommy/default.nix
···
1
1
+
{ lib, rustPlatform, fetchCrate }:
2
2
+
3
3
+
rustPlatform.buildRustPackage rec {
4
4
+
pname = "cargo-mommy";
5
5
+
version = "0.1.1";
6
6
+
7
7
+
src = fetchCrate {
8
8
+
inherit pname version;
9
9
+
sha256 = "sha256-p1SAYUQu1HpYJ6TbLJ3lfA9VlKHvB7z5yiFXmTQOCXA=";
10
10
+
};
11
11
+
12
12
+
cargoSha256 = "sha256-5RidY+6EF23UNzz1suSdA4LL59FalipaJ+ISSsmiCXM=";
13
13
+
14
14
+
meta = with lib; {
15
15
+
description = "Cargo wrapper that encourages you after running commands";
16
16
+
homepage = "https://github.com/Gankra/cargo-mommy";
17
17
+
license = with licenses; [ mit asl20 ];
18
18
+
maintainers = with maintainers; [ GoldsteinE ];
19
19
+
};
20
20
+
}
+1
pkgs/top-level/all-packages.nix
···
15407
15407
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
15408
15408
};
15409
15409
cargo-modules = callPackage ../development/tools/rust/cargo-modules { };
15410
15410
+
cargo-mommy = callPackage ../development/tools/rust/cargo-mommy { };
15410
15411
cargo-msrv = callPackage ../development/tools/rust/cargo-msrv {
15411
15412
inherit (darwin.apple_sdk.frameworks) Security;
15412
15413
};