harePackages: create subtree

This is a subtree for the (past, present and future) Hare language
infrastructure.
This commit is contained in:
AndersonTorres 2022-08-10 05:02:16 -03:00
parent ca39dc6915
commit d3993e24c6
7 changed files with 9 additions and 2 deletions

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs }:
lib.makeScope pkgs.newScope (self: with self; {
harec = callPackage ./harec { };
hare = callPackage ./hare { };
})

View file

@ -7211,8 +7211,8 @@ with pkgs;
llvmPackages = llvmPackages_9;
};
harec = callPackage ../development/compilers/hare/harec.nix { };
hare = callPackage ../development/compilers/hare/hare.nix { };
harePackages = recurseIntoAttrs (callPackage ../development/compilers/hare { });
inherit (harePackages) hare harec;
ham = pkgs.perlPackages.ham;