fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib
2, rustPlatform
3, fetchCrate
4, stdenv
5, darwin
6}:
7
8rustPlatform.buildRustPackage rec {
9 pname = "hvm";
10 version = "1.0.9";
11
12 src = fetchCrate {
13 inherit pname version;
14 hash = "sha256-dO0GzbMopX84AKOtJYYW6vojcs4kYcZ8LQ4tXEgUN7I=";
15 };
16
17 cargoHash = "sha256-RQnyVRHWrqnKcI3Jy593jDTydG1nGyrScsqSNyJTDJk=";
18
19 buildInputs = lib.optionals stdenv.isDarwin [
20 darwin.apple_sdk_11_0.frameworks.IOKit
21 ];
22
23 # tests are broken
24 doCheck = false;
25
26 # enable nightly features
27 RUSTC_BOOTSTRAP = true;
28
29 meta = with lib; {
30 description = "A pure functional compile target that is lazy, non-garbage-collected, and parallel";
31 homepage = "https://github.com/higherorderco/hvm";
32 license = licenses.mit;
33 maintainers = with maintainers; [ figsoda ];
34 };
35}