summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level/hare-third-party.nix
blob: 6dc7bc50bc6921c8a3281cf3fc26fe2a2207019a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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 { };
  }
)