about summary refs log tree commit diff
path: root/lib/default.nix
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-06-01 20:56:19 +0000
committervolth <volth@volth.com>2018-06-01 21:36:31 +0000
commit0addac3b0a1cd1faf42ecd5f793fd8481dbada07 (patch)
treefc333315a0ae0ee4dd92ecf52e7318ff41e019a1 /lib/default.nix
parent425ff431aba6efb2ea8bc41935e381d976d2ec19 (diff)
lib: bitAnd, bitOr, bitXor
Diffstat (limited to 'lib/default.nix')
-rw-r--r--lib/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/default.nix b/lib/default.nix
index 4ca2e2ea6e372..d608d7094474d 100644
--- a/lib/default.nix
+++ b/lib/default.nix
@@ -56,10 +56,10 @@ let
       hasAttr head isAttrs isBool isInt isList isString length
       lessThan listToAttrs pathExists readFile replaceStrings seq
       stringLength sub substring tail;
-    inherit (trivial) id const concat or and boolToString mergeAttrs
-      flip mapNullable inNixShell min max importJSON warn info
-      nixpkgsVersion version mod compare splitByAndCompare
-      functionArgs setFunctionArgs isFunction;
+    inherit (trivial) id const concat or and bitAnd bitOr bitXor
+      boolToString mergeAttrs flip mapNullable inNixShell min max
+      importJSON warn info nixpkgsVersion version mod compare
+      splitByAndCompare functionArgs setFunctionArgs isFunction;
 
     inherit (fixedPoints) fix fix' extends composeExtensions
       makeExtensible makeExtensibleWithCustomName;