bend: 0.2.22 -> 0.2.34, hvm: 2.0.17 -> 2.0.19

These updates are coupled because bend depends on exact hvm version.

Also removes IOKit from hvm's buildInputs on darwin. This was a holdover
from HVM1, which needed it. HVM2 does not.

Also deletes unused unused arguments from the hvm derivation.

Also migrates hvm to pkgs/by-name.
This commit is contained in:
Jeremy Schlatter 2024-06-21 12:34:21 -07:00
parent 124ae37067
commit d4a9198797
No known key found for this signature in database
GPG Key ID: 4D081B793DF81368
3 changed files with 6 additions and 14 deletions

View File

@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "Bend";
version = "0.2.22";
version = "0.2.34";
src = fetchFromGitHub {
owner = "HigherOrderCO";
repo = "Bend";
rev = "refs/tags/${version}";
hash = "sha256-5qcj3KfgcB5tbVSJUSOVQDAhEpPE8SFoT0g9syHbFCA=";
hash = "sha256-3leAt1M3Six5+KcCcz7sorpVHGkKj7xGWZ0KJnh+bNs=";
};
cargoHash = "sha256-gSAIidMEYJDZHgIWNgYJVqyhpD7M+CMCD+1mEXGztIk=";
cargoHash = "sha256-VynLnpZLUCqclIlbt7y6kd8ZJQGLa892J2UjDATgAhE=";
nativeBuildInputs = [
hvm

View File

@ -1,24 +1,18 @@
{ lib
, rustPlatform
, fetchCrate
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "hvm";
version = "2.0.17";
version = "2.0.19";
src = fetchCrate {
inherit pname version;
hash = "sha256-UzPEupmUnph7SjCc/T4sBSGXj8yLVdQlw+X9iM16zD8=";
hash = "sha256-+Cx+2v4JrQflDBaNZ9Fu8734Zr4rrgtnojUS4dkx7Ck=";
};
cargoHash = "sha256-AchVbf+mn4qQtzWu84Dqek+btCm6BA9mcY+8iHWqdiw=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk_11_0.frameworks.IOKit
];
cargoHash = "sha256-crVEtMzjg9T0oiS13URevPuRYqod4d2Ylb1IWRPVpa8=";
meta = with lib; {
description = "Massively parallel, optimal functional runtime in Rust";

View File

@ -15959,8 +15959,6 @@ with pkgs;
gwt240 = callPackage ../development/compilers/gwt/2.4.0.nix { };
hvm = darwin.apple_sdk_11_0.callPackage ../development/compilers/hvm { };
iay = callPackage ../tools/misc/iay {
inherit (darwin.apple_sdk.frameworks) AppKit Security Foundation Cocoa;
};