mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #269946 from onemoresuza/hare-third-party
hare: refactor `harePackages` into `hareThirdParty`
This commit is contained in:
commit
d2f2945795
@ -3938,13 +3938,9 @@ with pkgs;
|
||||
|
||||
hime = callPackage ../tools/inputmethods/hime { };
|
||||
|
||||
himitsu = callPackage ../tools/security/himitsu {
|
||||
inherit (harePackages) hare;
|
||||
};
|
||||
himitsu = callPackage ../tools/security/himitsu { };
|
||||
|
||||
himitsu-firefox = callPackage ../tools/security/himitsu-firefox {
|
||||
inherit (harePackages) hare;
|
||||
};
|
||||
himitsu-firefox = callPackage ../tools/security/himitsu-firefox { };
|
||||
|
||||
hinit = haskell.lib.compose.justStaticExecutables haskellPackages.hinit;
|
||||
|
||||
@ -9113,8 +9109,11 @@ with pkgs;
|
||||
llvmPackages = llvmPackages_16;
|
||||
};
|
||||
|
||||
harePackages = recurseIntoAttrs (callPackage ./hare-packages.nix { });
|
||||
inherit (harePackages) hare harec;
|
||||
hare = callPackage ../development/compilers/hare { };
|
||||
|
||||
harec = callPackage ../development/compilers/harec { };
|
||||
|
||||
hareThirdParty = recurseIntoAttrs (callPackage ./hare-third-party.nix { });
|
||||
|
||||
ham = pkgs.perlPackages.ham;
|
||||
|
||||
|
@ -1,10 +0,0 @@
|
||||
{ lib, newScope }:
|
||||
|
||||
lib.makeScope newScope (self:
|
||||
let
|
||||
inherit (self) callPackage;
|
||||
in
|
||||
{
|
||||
harec = callPackage ../development/compilers/harec { };
|
||||
hare = callPackage ../development/compilers/hare { };
|
||||
})
|
7
pkgs/top-level/hare-third-party.nix
Normal file
7
pkgs/top-level/hare-third-party.nix
Normal file
@ -0,0 +1,7 @@
|
||||
{ lib, newScope }:
|
||||
|
||||
lib.makeScope newScope (self:
|
||||
let
|
||||
inherit (self) callPackage;
|
||||
in
|
||||
{ })
|
Loading…
Reference in New Issue
Block a user