about summary refs log tree commit diff
path: root/pkgs/development/compilers/hvm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/hvm/default.nix')
-rw-r--r--pkgs/development/compilers/hvm/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/compilers/hvm/default.nix b/pkgs/development/compilers/hvm/default.nix
deleted file mode 100644
index 8342f0ee05b1d..0000000000000
--- a/pkgs/development/compilers/hvm/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib
-, rustPlatform
-, fetchCrate
-, stdenv
-, darwin
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "hvm";
-  version = "1.0.9";
-
-  src = fetchCrate {
-    inherit pname version;
-    hash = "sha256-dO0GzbMopX84AKOtJYYW6vojcs4kYcZ8LQ4tXEgUN7I=";
-  };
-
-  cargoHash = "sha256-RQnyVRHWrqnKcI3Jy593jDTydG1nGyrScsqSNyJTDJk=";
-
-  buildInputs = lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk_11_0.frameworks.IOKit
-  ];
-
-  # tests are broken
-  doCheck = false;
-
-  # enable nightly features
-  RUSTC_BOOTSTRAP = true;
-
-  meta = with lib; {
-    description = "A pure functional compile target that is lazy, non-garbage-collected, and parallel";
-    mainProgram = "hvm";
-    homepage = "https://github.com/higherorderco/hvm";
-    license = licenses.mit;
-    maintainers = with maintainers; [ figsoda ];
-  };
-}