nixpkgs/pkgs/development/compilers/hvm/default.nix

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

35 lines
790 B
Nix
Raw Normal View History

2022-09-25 17:03:11 +01:00
{ lib
, rustPlatform
, fetchCrate
, pkg-config
, openssl
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "hvm";
2022-10-18 15:56:10 +01:00
version = "0.1.89";
2022-09-25 17:03:11 +01:00
src = fetchCrate {
inherit pname version;
2022-10-18 15:56:10 +01:00
sha256 = "sha256-xPF8HW4QFXLLjg2HO5Pl+uQ44XCdAHc6koVpVXxN6dE=";
2022-09-25 17:03:11 +01:00
};
2022-10-18 15:56:10 +01:00
cargoSha256 = "sha256-dDSmiMwDbVDfStXamQvOMBBO5MiuDFhgzWPx0oYwzcM=";
2022-09-25 17:03:11 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
# memory allocation of 34359738368 bytes failed
doCheck = false;
meta = with lib; {
description = "A pure functional compile target that is lazy, non-garbage-collected, and parallel";
homepage = "https://github.com/kindelia/hvm";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}