Merge pull request #314965 from jeremyschlatter/bend-0-2-22_hvm-2-0-17

bend: 0.2.9 -> 0.2.22, hvm: 2.0.12 -> 2.0.17
This commit is contained in:
Weijia Wang 2024-05-29 08:46:21 +02:00 committed by GitHub
commit 472340f7ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 12 deletions

View File

@ -1,6 +1,5 @@
{
rustPlatform,
fetchCrate,
fetchFromGitHub,
lib,
makeWrapper,
@ -9,18 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "Bend";
version = "0.2.9";
version = "0.2.22";
src = fetchFromGitHub {
owner = "HigherOrderCO";
repo = "Bend";
rev = "refs/tags/${version}";
hash = "sha256-MEfB2SBJN7uEwfZGoEL7DQXsr1fccdZyGyzHtNv9wow=";
hash = "sha256-5qcj3KfgcB5tbVSJUSOVQDAhEpPE8SFoT0g9syHbFCA=";
};
cargoHash = "sha256-+i+Y3MgCBVN3REmPwAjm2SiF9FJ0i05czmPKB8JtAFM=";
RUSTC_BOOTSTRAP = true;
cargoHash = "sha256-gSAIidMEYJDZHgIWNgYJVqyhpD7M+CMCD+1mEXGztIk=";
nativeBuildInputs = [
hvm

View File

@ -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";