2023-11-20 02:02:11 +00:00
|
|
|
/*
|
|
|
|
Functions for querying information about the filesystem
|
|
|
|
without copying any files to the Nix store.
|
|
|
|
*/
|
2017-07-29 01:05:35 +01:00
|
|
|
{ lib }:
|
2022-10-26 14:10:47 +01:00
|
|
|
|
2023-05-22 13:17:42 +01:00
|
|
|
# Tested in lib/tests/filesystem.sh
|
2022-10-26 14:10:47 +01:00
|
|
|
let
|
2023-04-05 15:10:09 +01:00
|
|
|
inherit (builtins)
|
|
|
|
readDir
|
|
|
|
pathExists
|
2023-11-28 01:14:36 +00:00
|
|
|
toString
|
|
|
|
;
|
|
|
|
|
|
|
|
inherit (lib.attrsets)
|
|
|
|
mapAttrs'
|
|
|
|
filterAttrs
|
2023-04-05 15:10:09 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
inherit (lib.filesystem)
|
|
|
|
pathType
|
|
|
|
;
|
2023-11-28 01:14:36 +00:00
|
|
|
|
|
|
|
inherit (lib.strings)
|
|
|
|
hasSuffix
|
|
|
|
removeSuffix
|
|
|
|
;
|
2022-10-26 14:10:47 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2023-04-05 15:10:09 +01:00
|
|
|
|
|
|
|
/*
|
2023-04-05 16:16:10 +01:00
|
|
|
The type of a path. The path needs to exist and be accessible.
|
|
|
|
The result is either "directory" for a directory, "regular" for a regular file, "symlink" for a symlink, or "unknown" for anything else.
|
|
|
|
|
|
|
|
Type:
|
|
|
|
pathType :: Path -> String
|
|
|
|
|
|
|
|
Example:
|
|
|
|
pathType /.
|
|
|
|
=> "directory"
|
|
|
|
|
|
|
|
pathType /some/file.nix
|
|
|
|
=> "regular"
|
2023-04-05 15:10:09 +01:00
|
|
|
*/
|
2023-04-05 17:42:22 +01:00
|
|
|
pathType =
|
|
|
|
builtins.readFileType or
|
|
|
|
# Nix <2.14 compatibility shim
|
|
|
|
(path:
|
|
|
|
if ! pathExists path
|
|
|
|
# Fail irrecoverably to mimic the historic behavior of this function and
|
|
|
|
# the new builtins.readFileType
|
|
|
|
then abort "lib.filesystem.pathType: Path ${toString path} does not exist."
|
|
|
|
# The filesystem root is the only path where `dirOf / == /` and
|
|
|
|
# `baseNameOf /` is not valid. We can detect this and directly return
|
|
|
|
# "directory", since we know the filesystem root can't be anything else.
|
|
|
|
else if dirOf path == path
|
|
|
|
then "directory"
|
|
|
|
else (readDir (dirOf path)).${baseNameOf path}
|
|
|
|
);
|
2023-04-05 15:10:09 +01:00
|
|
|
|
|
|
|
/*
|
2023-04-05 16:16:10 +01:00
|
|
|
Whether a path exists and is a directory.
|
|
|
|
|
|
|
|
Type:
|
|
|
|
pathIsDirectory :: Path -> Bool
|
|
|
|
|
|
|
|
Example:
|
|
|
|
pathIsDirectory /.
|
|
|
|
=> true
|
|
|
|
|
|
|
|
pathIsDirectory /this/does/not/exist
|
|
|
|
=> false
|
|
|
|
|
|
|
|
pathIsDirectory /some/file.nix
|
|
|
|
=> false
|
2023-04-05 15:10:09 +01:00
|
|
|
*/
|
2023-04-05 15:13:03 +01:00
|
|
|
pathIsDirectory = path:
|
|
|
|
pathExists path && pathType path == "directory";
|
2023-04-05 15:10:09 +01:00
|
|
|
|
|
|
|
/*
|
2023-04-05 16:16:10 +01:00
|
|
|
Whether a path exists and is a regular file, meaning not a symlink or any other special file type.
|
|
|
|
|
|
|
|
Type:
|
|
|
|
pathIsRegularFile :: Path -> Bool
|
|
|
|
|
|
|
|
Example:
|
|
|
|
pathIsRegularFile /.
|
|
|
|
=> false
|
|
|
|
|
|
|
|
pathIsRegularFile /this/does/not/exist
|
|
|
|
=> false
|
|
|
|
|
|
|
|
pathIsRegularFile /some/file.nix
|
|
|
|
=> true
|
2023-04-05 15:10:09 +01:00
|
|
|
*/
|
2023-04-05 15:13:03 +01:00
|
|
|
pathIsRegularFile = path:
|
|
|
|
pathExists path && pathType path == "regular";
|
2023-04-05 15:10:09 +01:00
|
|
|
|
2022-10-26 14:10:47 +01:00
|
|
|
/*
|
|
|
|
A map of all haskell packages defined in the given path,
|
|
|
|
identified by having a cabal file with the same name as the
|
|
|
|
directory itself.
|
|
|
|
|
|
|
|
Type: Path -> Map String Path
|
|
|
|
*/
|
|
|
|
haskellPathsInDir =
|
|
|
|
# The directory within to search
|
|
|
|
root:
|
2017-05-01 15:49:59 +01:00
|
|
|
let # Files in the root
|
|
|
|
root-files = builtins.attrNames (builtins.readDir root);
|
|
|
|
# Files with their full paths
|
|
|
|
root-files-with-paths =
|
|
|
|
map (file:
|
|
|
|
{ name = file; value = root + "/${file}"; }
|
|
|
|
) root-files;
|
|
|
|
# Subdirectories of the root with a cabal file.
|
|
|
|
cabal-subdirs =
|
|
|
|
builtins.filter ({ name, value }:
|
|
|
|
builtins.pathExists (value + "/${name}.cabal")
|
|
|
|
) root-files-with-paths;
|
|
|
|
in builtins.listToAttrs cabal-subdirs;
|
2022-10-26 14:10:47 +01:00
|
|
|
/*
|
|
|
|
Find the first directory containing a file matching 'pattern'
|
|
|
|
upward from a given 'file'.
|
|
|
|
Returns 'null' if no directories contain a file matching 'pattern'.
|
|
|
|
|
|
|
|
Type: RegExp -> Path -> Nullable { path : Path; matches : [ MatchResults ]; }
|
|
|
|
*/
|
|
|
|
locateDominatingFile =
|
|
|
|
# The pattern to search for
|
|
|
|
pattern:
|
|
|
|
# The file to start searching upward from
|
|
|
|
file:
|
2017-03-04 18:15:23 +00:00
|
|
|
let go = path:
|
|
|
|
let files = builtins.attrNames (builtins.readDir path);
|
|
|
|
matches = builtins.filter (match: match != null)
|
|
|
|
(map (builtins.match pattern) files);
|
|
|
|
in
|
|
|
|
if builtins.length matches != 0
|
|
|
|
then { inherit path matches; }
|
|
|
|
else if path == /.
|
|
|
|
then null
|
|
|
|
else go (dirOf path);
|
|
|
|
parent = dirOf file;
|
|
|
|
isDir =
|
|
|
|
let base = baseNameOf file;
|
|
|
|
type = (builtins.readDir parent).${base} or null;
|
|
|
|
in file == /. || type == "directory";
|
|
|
|
in go (if isDir then file else parent);
|
2020-10-19 22:33:52 +01:00
|
|
|
|
|
|
|
|
2022-10-26 14:10:47 +01:00
|
|
|
/*
|
|
|
|
Given a directory, return a flattened list of all files within it recursively.
|
|
|
|
|
|
|
|
Type: Path -> [ Path ]
|
|
|
|
*/
|
|
|
|
listFilesRecursive =
|
|
|
|
# The path to recursively list
|
|
|
|
dir:
|
|
|
|
lib.flatten (lib.mapAttrsToList (name: type:
|
2020-10-19 22:33:52 +01:00
|
|
|
if type == "directory" then
|
|
|
|
lib.filesystem.listFilesRecursive (dir + "/${name}")
|
|
|
|
else
|
|
|
|
dir + "/${name}"
|
|
|
|
) (builtins.readDir dir));
|
|
|
|
|
2023-11-28 01:14:36 +00:00
|
|
|
/*
|
|
|
|
Transform a directory tree containing package files suitable for
|
|
|
|
`callPackage` into a matching nested attribute set of derivations.
|
|
|
|
|
|
|
|
For a directory tree like this:
|
|
|
|
|
|
|
|
```
|
|
|
|
my-packages
|
|
|
|
├── a.nix
|
|
|
|
├── b.nix
|
|
|
|
├── c
|
|
|
|
│ ├── my-extra-feature.patch
|
|
|
|
│ ├── package.nix
|
|
|
|
│ └── support-definitions.nix
|
|
|
|
└── my-namespace
|
|
|
|
├── d.nix
|
|
|
|
├── e.nix
|
|
|
|
└── f
|
|
|
|
└── package.nix
|
|
|
|
```
|
|
|
|
|
|
|
|
`packagesFromDirectoryRecursive` will produce an attribute set like this:
|
|
|
|
|
|
|
|
```nix
|
|
|
|
# packagesFromDirectoryRecursive {
|
|
|
|
# callPackage = pkgs.callPackage;
|
|
|
|
# directory = ./my-packages;
|
|
|
|
# }
|
|
|
|
{
|
|
|
|
a = pkgs.callPackage ./my-packages/a.nix { };
|
|
|
|
b = pkgs.callPackage ./my-packages/b.nix { };
|
|
|
|
c = pkgs.callPackage ./my-packages/c/package.nix { };
|
|
|
|
my-namespace = {
|
|
|
|
d = pkgs.callPackage ./my-packages/my-namespace/d.nix { };
|
|
|
|
e = pkgs.callPackage ./my-packages/my-namespace/e.nix { };
|
|
|
|
f = pkgs.callPackage ./my-packages/my-namespace/f/package.nix { };
|
|
|
|
};
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
In particular:
|
|
|
|
- If the input directory contains a `package.nix` file, then
|
|
|
|
`callPackage <directory>/package.nix { }` is returned.
|
|
|
|
- Otherwise, the input directory's contents are listed and transformed into
|
|
|
|
an attribute set.
|
|
|
|
- If a file name has the `.nix` extension, it is turned into attribute
|
|
|
|
where:
|
|
|
|
- The attribute name is the file name without the `.nix` extension
|
|
|
|
- The attribute value is `callPackage <file path> { }`
|
|
|
|
- Other files are ignored.
|
|
|
|
- Directories are turned into an attribute where:
|
|
|
|
- The attribute name is the name of the directory
|
|
|
|
- The attribute value is the result of calling
|
|
|
|
`packagesFromDirectoryRecursive { ... }` on the directory.
|
|
|
|
|
|
|
|
As a result, directories with no `.nix` files (including empty
|
|
|
|
directories) will be transformed into empty attribute sets.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
packagesFromDirectoryRecursive {
|
|
|
|
inherit (pkgs) callPackage;
|
|
|
|
directory = ./my-packages;
|
|
|
|
}
|
|
|
|
=> { ... }
|
|
|
|
|
|
|
|
lib.makeScope pkgs.newScope (
|
|
|
|
self: packagesFromDirectoryRecursive {
|
|
|
|
callPackage = self.callPackage;
|
|
|
|
directory = ./my-packages;
|
|
|
|
}
|
|
|
|
)
|
|
|
|
=> { ... }
|
|
|
|
|
|
|
|
Type:
|
|
|
|
packagesFromDirectoryRecursive :: AttrSet -> AttrSet
|
|
|
|
*/
|
|
|
|
packagesFromDirectoryRecursive =
|
|
|
|
# Options.
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
`pkgs.callPackage`
|
|
|
|
|
|
|
|
Type:
|
|
|
|
Path -> AttrSet -> a
|
|
|
|
*/
|
|
|
|
callPackage,
|
|
|
|
/*
|
|
|
|
The directory to read package files from
|
|
|
|
|
|
|
|
Type:
|
|
|
|
Path
|
|
|
|
*/
|
|
|
|
directory,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
# Determine if a directory entry from `readDir` indicates a package or
|
|
|
|
# directory of packages.
|
|
|
|
directoryEntryIsPackage = basename: type:
|
|
|
|
type == "directory" || hasSuffix ".nix" basename;
|
|
|
|
|
|
|
|
# List directory entries that indicate packages in the given `path`.
|
|
|
|
packageDirectoryEntries = path:
|
|
|
|
filterAttrs directoryEntryIsPackage (readDir path);
|
|
|
|
|
|
|
|
# Transform a directory entry (a `basename` and `type` pair) into a
|
|
|
|
# package.
|
|
|
|
directoryEntryToAttrPair = subdirectory: basename: type:
|
|
|
|
let
|
|
|
|
path = subdirectory + "/${basename}";
|
|
|
|
in
|
|
|
|
if type == "regular"
|
|
|
|
then
|
|
|
|
{
|
|
|
|
name = removeSuffix ".nix" basename;
|
|
|
|
value = callPackage path { };
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if type == "directory"
|
|
|
|
then
|
|
|
|
{
|
|
|
|
name = basename;
|
|
|
|
value = packagesFromDirectory path;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw
|
|
|
|
''
|
|
|
|
lib.filesystem.packagesFromDirectoryRecursive: Unsupported file type ${type} at path ${toString subdirectory}
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Transform a directory into a package (if there's a `package.nix`) or
|
|
|
|
# set of packages (otherwise).
|
|
|
|
packagesFromDirectory = path:
|
|
|
|
let
|
|
|
|
defaultPackagePath = path + "/package.nix";
|
|
|
|
in
|
|
|
|
if pathExists defaultPackagePath
|
|
|
|
then callPackage defaultPackagePath { }
|
|
|
|
else mapAttrs'
|
|
|
|
(directoryEntryToAttrPair path)
|
|
|
|
(packageDirectoryEntries path);
|
|
|
|
in
|
|
|
|
packagesFromDirectory directory;
|
2017-03-04 18:15:23 +00:00
|
|
|
}
|