nixpkgs/pkgs/top-level/hare-third-party.nix
2023-12-15 07:01:17 -03:00

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 { };
})