mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 09:54:52 +00:00
11 lines
206 B
Nix
11 lines
206 B
Nix
|
{ lib, newScope }:
|
||
|
|
||
|
lib.makeScope newScope (self:
|
||
|
let
|
||
|
inherit (self) callPackage;
|
||
|
in
|
||
|
{
|
||
|
harec = callPackage ../development/compilers/harec { };
|
||
|
hare = callPackage ../development/compilers/hare { };
|
||
|
})
|