mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
Merge pull request #20512 from 3noch/patch-1
Expose guts of `cleanSource`
This commit is contained in:
commit
18b8e4508c
@ -12,19 +12,19 @@ rec {
|
|||||||
|
|
||||||
# Bring in a path as a source, filtering out all Subversion and CVS
|
# Bring in a path as a source, filtering out all Subversion and CVS
|
||||||
# directories, as well as backup files (*~).
|
# directories, as well as backup files (*~).
|
||||||
cleanSource =
|
cleanSourceFilter = name: type: let baseName = baseNameOf (toString name); in ! (
|
||||||
let filter = name: type: let baseName = baseNameOf (toString name); in ! (
|
# Filter out Subversion and CVS directories.
|
||||||
# Filter out Subversion and CVS directories.
|
(type == "directory" && (baseName == ".git" || baseName == ".svn" || baseName == "CVS" || baseName == ".hg")) ||
|
||||||
(type == "directory" && (baseName == ".git" || baseName == ".svn" || baseName == "CVS" || baseName == ".hg")) ||
|
# Filter out backup files.
|
||||||
# Filter out backup files.
|
lib.hasSuffix "~" baseName ||
|
||||||
lib.hasSuffix "~" baseName ||
|
# Filter out generates files.
|
||||||
# Filter out generates files.
|
lib.hasSuffix ".o" baseName ||
|
||||||
lib.hasSuffix ".o" baseName ||
|
lib.hasSuffix ".so" baseName ||
|
||||||
lib.hasSuffix ".so" baseName ||
|
# Filter out nix-build result symlinks
|
||||||
# Filter out nix-build result symlinks
|
(type == "symlink" && lib.hasPrefix "result" baseName)
|
||||||
(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
|
# Get all files ending with the specified suffices from the given
|
||||||
|
Loading…
Reference in New Issue
Block a user