hvm: correct license and update description

HVM1 had an MIT license, but HVM2 has an Apache license.

HVM1: https://github.com/HigherOrderCO/HVM1/blob/master/LICENSE
HVM2: https://github.com/HigherOrderCO/HVM/blob/main/LICENSE

Updated description from hvm repo: https://github.com/HigherOrderCO/HVM/
This commit is contained in:
Jeremy Schlatter
2024-05-21 23:34:57 -07:00
parent e69e710edf
commit 4ea05703b3
+2 -2
View File
@@ -24,10 +24,10 @@ rustPlatform.buildRustPackage rec {
RUSTC_BOOTSTRAP = true;
meta = with lib; {
description = "A pure functional compile target that is lazy, non-garbage-collected, and parallel";
description = "A massively parallel, optimal functional runtime in Rust";
mainProgram = "hvm";
homepage = "https://github.com/higherorderco/hvm";
license = licenses.mit;
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
};
}