mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
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 { };
|
|
})
|