504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
12 lines
388 B
Nix
12 lines
388 B
Nix
{ lib, newScope }:
|
|
|
|
lib.makeScope newScope (self:
|
|
let
|
|
inherit (self) callPackage;
|
|
in
|
|
{
|
|
hare-compress = callPackage ../development/hare-third-party/hare-compress { };
|
|
hare-ev = callPackage ../development/hare-third-party/hare-ev { };
|
|
hare-json = callPackage ../development/hare-third-party/hare-json { };
|
|
hare-toml = callPackage ../development/hare-third-party/hare-toml { };
|
|
})
|