mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
18 lines
704 B
Nix
18 lines
704 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-http = callPackage ../development/hare-third-party/hare-http { };
|
|
hare-json = callPackage ../development/hare-third-party/hare-json { };
|
|
hare-ssh = callPackage ../development/hare-third-party/hare-ssh { };
|
|
hare-toml = callPackage ../development/hare-third-party/hare-toml { };
|
|
hare-png = callPackage ../development/hare-third-party/hare-png { };
|
|
hare-xml = callPackage ../development/hare-third-party/hare-xml { };
|
|
}
|
|
)
|