Unverified Commit fb9bfe8f authored by Jeremy Schlatter's avatar Jeremy Schlatter
Browse files

hvm: 2.0.12 -> 2.0.17

HVM2 never needed rust nightly, so also drop `RUSTC_BOOSTRAP = true`.

See https://github.com/HigherOrderCO/HVM/issues/352
parent 5a279778
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -7,22 +7,19 @@

rustPlatform.buildRustPackage rec {
  pname = "hvm";
  version = "2.0.12";
  version = "2.0.17";

  src = fetchCrate {
    inherit pname version;
    hash = "sha256-/55SK/5zBKXmucRQPoYt/8IHxisQlOxNEVMAZVMtCNI=";
    hash = "sha256-UzPEupmUnph7SjCc/T4sBSGXj8yLVdQlw+X9iM16zD8=";
  };

  cargoHash = "sha256-9U8Y0KaQHIfOZnCKbl94VvjS/7Qmi6UnKMDZDTXcye0=";
  cargoHash = "sha256-AchVbf+mn4qQtzWu84Dqek+btCm6BA9mcY+8iHWqdiw=";

  buildInputs = lib.optionals stdenv.isDarwin [
    darwin.apple_sdk_11_0.frameworks.IOKit
  ];

  # enable nightly features
  RUSTC_BOOTSTRAP = true;

  meta = with lib; {
    description = "A massively parallel, optimal functional runtime in Rust";
    mainProgram = "hvm";