cargo-play: init at 0.5.0
This commit is contained in:
parent
0d07997538
commit
a01cffac18
25
pkgs/development/tools/rust/cargo-play/default.nix
Normal file
25
pkgs/development/tools/rust/cargo-play/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ fetchFromGitHub, lib, rustPlatform }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "cargo-play";
|
||||||
|
version = "0.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fanzeyi";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "01r00akfmvpzp924yqqybd9s0pwiwxy8vklsg4m9ypzljc3nlv02";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0fvsdyivq5991ka6avh12aqdkjx0myk61kmzlr19p2vlfpg70q07";
|
||||||
|
|
||||||
|
# some tests require internet access
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Run your rust code without setting up cargo";
|
||||||
|
homepage = "https://github.com/fanzeyi/cargo-play";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
};
|
||||||
|
}
|
@ -10849,6 +10849,7 @@ in
|
|||||||
cargo-make = callPackage ../development/tools/rust/cargo-make {
|
cargo-make = callPackage ../development/tools/rust/cargo-make {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
||||||
};
|
};
|
||||||
|
cargo-play = callPackage ../development/tools/rust/cargo-play { };
|
||||||
cargo-raze = callPackage ../development/tools/rust/cargo-raze {
|
cargo-raze = callPackage ../development/tools/rust/cargo-raze {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user