about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorJeremy Schlatter <jeremy@jeremyschlatter.com>2024-06-21 12:34:21 -0700
committerJeremy Schlatter <jeremy@jeremyschlatter.com>2024-06-21 18:41:48 -0700
commitd4a9198797bf92b6fbbde689ed15fbb35807158e (patch)
tree605929262ad4cddba5f69814dc22aa2eea38f699 /pkgs/development/compilers
parent124ae37067e998cc9286daccf1f222d651c6bef5 (diff)
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.
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/hvm/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/compilers/hvm/default.nix b/pkgs/development/compilers/hvm/default.nix
deleted file mode 100644
index 1399717994b35..0000000000000
--- a/pkgs/development/compilers/hvm/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib
-, rustPlatform
-, fetchCrate
-, stdenv
-, darwin
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "hvm";
-  version = "2.0.17";
-
-  src = fetchCrate {
-    inherit pname version;
-    hash = "sha256-UzPEupmUnph7SjCc/T4sBSGXj8yLVdQlw+X9iM16zD8=";
-  };
-
-  cargoHash = "sha256-AchVbf+mn4qQtzWu84Dqek+btCm6BA9mcY+8iHWqdiw=";
-
-  buildInputs = lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk_11_0.frameworks.IOKit
-  ];
-
-  meta = with lib; {
-    description = "Massively parallel, optimal functional runtime in Rust";
-    mainProgram = "hvm";
-    homepage = "https://github.com/higherorderco/hvm";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ figsoda ];
-  };
-}