mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
f58a6078fa
The purpose of this change is to allow the overriding of one egg, which in turn affects all dependents of that eggs.
22 lines
445 B
Nix
22 lines
445 B
Nix
{ lib, newScope } :
|
|
let
|
|
callPackage = newScope self;
|
|
|
|
self = {
|
|
pkgs = self;
|
|
|
|
fetchegg = callPackage ./fetchegg { };
|
|
|
|
eggDerivation = callPackage ./eggDerivation.nix { };
|
|
|
|
chicken = callPackage ./chicken.nix {
|
|
bootstrap-chicken = self.chicken.override { bootstrap-chicken = null; };
|
|
};
|
|
|
|
chickenEggs = lib.recurseIntoAttrs (callPackage ./eggs.nix { });
|
|
|
|
egg2nix = callPackage ./egg2nix.nix { };
|
|
};
|
|
|
|
in self
|