2022-09-25 16:03:11 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchCrate
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "hvm";
|
2024-06-21 19:34:21 +00:00
|
|
|
version = "2.0.19";
|
2022-09-25 16:03:11 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-06-21 19:34:21 +00:00
|
|
|
hash = "sha256-+Cx+2v4JrQflDBaNZ9Fu8734Zr4rrgtnojUS4dkx7Ck=";
|
2022-09-25 16:03:11 +00:00
|
|
|
};
|
|
|
|
|
2024-06-21 19:34:21 +00:00
|
|
|
cargoHash = "sha256-crVEtMzjg9T0oiS13URevPuRYqod4d2Ylb1IWRPVpa8=";
|
2022-09-25 16:03:11 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-07 07:46:46 +00:00
|
|
|
description = "Massively parallel, optimal functional runtime in Rust";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "hvm";
|
2023-05-12 15:40:18 +00:00
|
|
|
homepage = "https://github.com/higherorderco/hvm";
|
2024-05-22 06:13:23 +00:00
|
|
|
license = licenses.asl20;
|
2022-09-25 16:03:11 +00:00
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|