nixpkgs/pkgs/by-name/hv/hvm/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
567 B
Nix
Raw Normal View History

2022-09-25 19:03:11 +03:00
{ lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "hvm";
version = "2.0.19";
2022-09-25 19:03:11 +03:00
src = fetchCrate {
inherit pname version;
hash = "sha256-+Cx+2v4JrQflDBaNZ9Fu8734Zr4rrgtnojUS4dkx7Ck=";
2022-09-25 19:03:11 +03:00
};
cargoHash = "sha256-crVEtMzjg9T0oiS13URevPuRYqod4d2Ylb1IWRPVpa8=";
2022-09-25 19:03:11 +03:00
meta = with lib; {
description = "Massively parallel, optimal functional runtime in Rust";
mainProgram = "hvm";
homepage = "https://github.com/higherorderco/hvm";
license = licenses.asl20;
2022-09-25 19:03:11 +03:00
maintainers = with maintainers; [ figsoda ];
};
}