mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
12 lines
247 B
Nix
12 lines
247 B
Nix
{ lib, newScope }:
|
|
|
|
lib.makeScope newScope (self:
|
|
let
|
|
inherit (self) callPackage;
|
|
in
|
|
{
|
|
|
|
hare-compress = callPackage ../development/hare-third-party/hare-compress { };
|
|
hare-json = callPackage ../development/hare-third-party/hare-json { };
|
|
})
|