typioca: 2.7.0 -> 2.8.0
[NixPkgs.git] / pkgs / development / interpreters / evcxr / default.nix
blob7b1a9b8b083513a965867451ed7ff6836448c0f8
1 { cargo, fetchFromGitHub, makeWrapper, pkg-config, rustPlatform, lib, stdenv
2 , gcc, cmake, libiconv, CoreServices, Security }:
4 rustPlatform.buildRustPackage rec {
5   pname = "evcxr";
6   version = "0.16.0";
8   src = fetchFromGitHub {
9     owner = "google";
10     repo = "evcxr";
11     rev = "v${version}";
12     sha256 = "sha256-TQG0YNwD3WU50fftFv5nGUK9ucxDXYnbQVv8Dewhwm8=";
13   };
15   cargoHash = "sha256-F2CduT0/vjoVHua5WshYxsxf4P0QBa+BjFVp7iTsFkU=";
17   RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
19   nativeBuildInputs = [ pkg-config makeWrapper cmake ];
20   buildInputs = lib.optionals stdenv.isDarwin
21     [ libiconv CoreServices Security ];
23   checkFlags = [
24     # test broken with rust 1.69:
25     # * https://github.com/evcxr/evcxr/issues/294
26     # * https://github.com/NixOS/nixpkgs/issues/229524
27     "--skip=check_for_errors"
28   ];
30   postInstall = let
31     wrap = exe: ''
32       wrapProgram $out/bin/${exe} \
33         --prefix PATH : ${lib.makeBinPath [ cargo gcc ]} \
34         --set-default RUST_SRC_PATH "$RUST_SRC_PATH"
35     '';
36   in ''
37     ${wrap "evcxr"}
38     ${wrap "evcxr_jupyter"}
39     rm $out/bin/testing_runtime
40   '';
42   meta = with lib; {
43     description = "An evaluation context for Rust";
44     homepage = "https://github.com/google/evcxr";
45     license = licenses.asl20;
46     maintainers = with maintainers; [ protoben ma27 ];
47   };