about summary refs log tree commit diff
path: root/pkgs/top-level/hare-third-party.nix
blob: 8cf7cc4a9d8eb22f72447822c7e0a82eced207a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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 { };
})