1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/top-level/hare-third-party.nix

15 lines
530 B
Nix
Raw Normal View History

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