Expose guts of cleanSource

Ref #20511
This commit is contained in:
Elliot Cameron 2016-11-17 22:21:18 -05:00 committed by GitHub
parent 80ec5b3f58
commit 402c07c563

View File

@ -12,8 +12,7 @@ rec {
# Bring in a path as a source, filtering out all Subversion and CVS
# directories, as well as backup files (*~).
cleanSource =
let filter = name: type: let baseName = baseNameOf (toString name); in ! (
cleanSourceFilter = name: type: let baseName = baseNameOf (toString name); in ! (
# Filter out Subversion and CVS directories.
(type == "directory" && (baseName == ".git" || baseName == ".svn" || baseName == "CVS" || baseName == ".hg")) ||
# Filter out backup files.
@ -24,7 +23,8 @@ rec {
# Filter out nix-build result symlinks
(type == "symlink" && lib.hasPrefix "result" baseName)
);
in src: builtins.filterSource filter src;
cleanSource = builtins.filterSource cleanSourceFilter;
# Get all files ending with the specified suffices from the given