From 4ea05703b3efc8150632491c394b8353e534a1de Mon Sep 17 00:00:00 2001 From: Jeremy Schlatter Date: Tue, 21 May 2024 23:13:23 -0700 Subject: [PATCH] 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/ --- pkgs/development/compilers/hvm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/hvm/default.nix b/pkgs/development/compilers/hvm/default.nix index 1c720e297fb6..b640d4e11c2d 100644 --- a/pkgs/development/compilers/hvm/default.nix +++ b/pkgs/development/compilers/hvm/default.nix @@ -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 ]; }; }