forked from mirrors/nixpkgs
* Filter out *~ files in cleanSource.
svn path=/nixpkgs/trunk/; revision=7803
This commit is contained in:
parent
bffcfd2d78
commit
83a82a22e5
|
@ -2,7 +2,8 @@
|
|||
|
||||
let
|
||||
|
||||
inherit (builtins) head tail isList;
|
||||
inherit (builtins)
|
||||
head tail isList stringLength substring lessThan sub;
|
||||
|
||||
in
|
||||
|
||||
|
@ -82,12 +83,23 @@ rec {
|
|||
else head xs == head ys && eqLists (tail xs) (tail ys);
|
||||
|
||||
|
||||
# Bring in a path as a source, filtering out all hidden Subversion
|
||||
# directories. TODO: filter out backup files (*~) etc.
|
||||
# Determine whether a filename ends in the given suffix.
|
||||
hasSuffix = ext: fileName:
|
||||
let lenFileName = stringLength fileName;
|
||||
lenExt = stringLength ext;
|
||||
in !(lessThan lenFileName lenExt) &&
|
||||
substring (sub lenFileName lenExt) lenFileName fileName == ext;
|
||||
|
||||
|
||||
# Bring in a path as a source, filtering out all Subversion and CVS
|
||||
# directories, as well as backup files (*~).
|
||||
cleanSource =
|
||||
let filter = name: type:
|
||||
type != "directory"
|
||||
|| baseNameOf (toString name) != ".svn";
|
||||
let filter = name: type: let baseName = baseNameOf (toString name); in ! (
|
||||
# Filter out Subversion and CVS directories.
|
||||
(type == "directory" && (name == ".svn" || name == "CVS")) ||
|
||||
# Filter out backup files.
|
||||
(hasSuffix "~" name)
|
||||
);
|
||||
in src: builtins.filterSource filter src;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue