summaryrefslogtreecommitdiff
path: root/lib/default.nix
diff options
context:
space:
mode:
authorJanik <80165193+Janik-Haag@users.noreply.github.com>2024-07-11 20:57:53 +0200
committerGitHub <noreply@github.com>2024-07-11 20:57:53 +0200
commitc20399ea2eb952e0fe67a22e2c0988f82ab1b734 (patch)
treecafb34e6af7ee39c3e7f3c5ff2b205110f55f8bf /lib/default.nix
parentMerge pull request #326277 from dotlambda/getmail6 (diff)
parentlib.network: ipv6 parser from string (diff)
downloadnixpkgs-c20399ea2eb952e0fe67a22e2c0988f82ab1b734.tar.gz
Merge pull request #318712 from woojiq/lib-network-ipv6-parser
lib.network: add ipv6 parser
Diffstat (limited to 'lib/default.nix')
-rw-r--r--lib/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/default.nix b/lib/default.nix
index ef0bb60ab8c5..2605da47679e 100644
--- a/lib/default.nix
+++ b/lib/default.nix
@@ -64,6 +64,9 @@ let
# linux kernel configuration
kernel = callLibs ./kernel.nix;
+ # network
+ network = callLibs ./network;
+
# TODO: For consistency, all builtins should also be available from a sub-library;
# these are the only ones that are currently not
inherit (builtins) addErrorContext isPath trace typeOf unsafeGetAttrPos;
@@ -73,7 +76,7 @@ let
info showWarnings nixpkgsVersion version isInOldestRelease
mod compare splitByAndCompare seq deepSeq lessThan add sub
functionArgs setFunctionArgs isFunction toFunction mirrorFunctionArgs
- toHexString toBaseDigits inPureEvalMode isBool isInt pathExists
+ fromHexString toHexString toBaseDigits inPureEvalMode isBool isInt pathExists
genericClosure readFile;
inherit (self.fixedPoints) fix fix' converge extends composeExtensions
composeManyExtensions makeExtensible makeExtensibleWithCustomName;