2021-09-22 00:33:51 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
2021-03-01 12:30:26 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-play";
|
|
|
|
version = "0.5.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fanzeyi";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "01r00akfmvpzp924yqqybd9s0pwiwxy8vklsg4m9ypzljc3nlv02";
|
|
|
|
};
|
|
|
|
|
2021-05-07 11:00:49 +00:00
|
|
|
cargoSha256 = "1xkscd9ci9vlkmbsaxvavrna1xpi16xcf9ri879lw8bdh7sa3nx8";
|
2021-03-01 12:30:26 +00:00
|
|
|
|
2021-09-22 00:33:51 +00:00
|
|
|
# these tests require internet access
|
|
|
|
checkFlags = [
|
|
|
|
"--skip=dtoa_test"
|
|
|
|
"--skip=infer_override"
|
|
|
|
];
|
2021-03-01 12:30:26 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|