about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/rust/cargo-play/default.nix
blob: f5faed06faf93c9869f5cba92a510941b88e2690 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 = "1xkscd9ci9vlkmbsaxvavrna1xpi16xcf9ri879lw8bdh7sa3nx8";

  # 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 ];
  };
}