mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
29 lines
695 B
Nix
29 lines
695 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-play";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fanzeyi";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-Z5zcLQYfQeGybsnt2U+4Z+peRHxNPbDriPMKWhJ+PeA=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-I+keVi0fxUVttMHOGJQWVfIpHEQu/9aTbERa3qiHmnQ=";
|
|
|
|
# these tests require internet access
|
|
checkFlags = [
|
|
"--skip=dtoa_test"
|
|
"--skip=infer_override"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|