nixpkgs/pkgs/top-level/hare-third-party.nix
Janik ac91019d44
Merge pull request #276437 from patwid/hare-ssh
hareThirdParty.hare-ssh: init at unstable-2023-11-16
2024-01-16 05:11:46 +01:00

15 lines
530 B
Nix

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