fix(build): Fix compatibility with Nixery instance
This commit is contained in:
parent
3359ce12cf
commit
c776bd383d
1 changed files with 14 additions and 1 deletions
15
default.nix
15
default.nix
|
@ -54,4 +54,17 @@ in fix(self: {
|
||||||
# This can be used to move things from third_party into the top-level, too (such
|
# This can be used to move things from third_party into the top-level, too (such
|
||||||
# as `lib`).
|
# as `lib`).
|
||||||
// (readTree' self.config) ./overrides
|
// (readTree' self.config) ./overrides
|
||||||
)
|
|
||||||
|
# These packages must be exposed at the top-level for compatibility
|
||||||
|
# with Nixery.
|
||||||
|
// {
|
||||||
|
inherit (self.third_party)
|
||||||
|
cacert
|
||||||
|
coreutils
|
||||||
|
iana-etc
|
||||||
|
jq
|
||||||
|
openssl
|
||||||
|
runCommand
|
||||||
|
symlinkJoin
|
||||||
|
writeText;
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in a new issue