summary refs log tree commit diff
path: root/lib/default.nix
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2017-03-04 13:15:23 -0500
committerShea Levy <shea@shealevy.com>2017-03-04 13:15:23 -0500
commit56e71f62dc49e64fcd37768cc7d1ec219d4990e6 (patch)
tree7e91a13dface2b09b4574447eaa8e5c5ec3b916c /lib/default.nix
parent7b914b29864132ae73e4a0eb9656eec8bb05102f (diff)
downloadnixpkgs-56e71f62dc49e64fcd37768cc7d1ec219d4990e6.tar
nixpkgs-56e71f62dc49e64fcd37768cc7d1ec219d4990e6.tar.gz
nixpkgs-56e71f62dc49e64fcd37768cc7d1ec219d4990e6.tar.bz2
nixpkgs-56e71f62dc49e64fcd37768cc7d1ec219d4990e6.tar.lz
nixpkgs-56e71f62dc49e64fcd37768cc7d1ec219d4990e6.tar.xz
nixpkgs-56e71f62dc49e64fcd37768cc7d1ec219d4990e6.tar.zst
nixpkgs-56e71f62dc49e64fcd37768cc7d1ec219d4990e6.zip
Add locateDominatingFile lib function
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 c0d7899b882..09a64f754d8 100644
--- a/lib/default.nix
+++ b/lib/default.nix
@@ -34,6 +34,9 @@ let
   sandbox = import ./sandbox.nix;
   fetchers = import ./fetchers.nix;
 
+  # Eval-time filesystem handling
+  filesystem = import ./filesystem.nix;
+
 in
   { inherit trivial
             attrsets lists strings stringsWithDeps
@@ -41,7 +44,7 @@ in
             modules options types
             licenses platforms systems
             debug generators misc
-            sandbox fetchers;
+            sandbox fetchers filesystem;
   }
   # !!! don't include everything at top-level; perhaps only the most
   # commonly used functions.