mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
64121103ec
* hareThirdParty.hare-ev: init at unstable-2023-10-30 (#274505) --------- Co-authored-by: Janik <80165193+Janik-Haag@users.noreply.github.com>
13 lines
316 B
Nix
13 lines
316 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 { };
|
|
})
|