mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #28722 from copumpkin/filterSource-cleanup
Deduplicate some filterSource invocations
This commit is contained in:
commit
ec75a30b66
@ -17,6 +17,8 @@ rec {
|
|||||||
(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 ||
|
||||||
|
builtins.match "^.*\.sw[a-z]$" baseName != null ||
|
||||||
|
|
||||||
# Filter out generates files.
|
# Filter out generates files.
|
||||||
lib.hasSuffix ".o" baseName ||
|
lib.hasSuffix ".o" baseName ||
|
||||||
lib.hasSuffix ".so" baseName ||
|
lib.hasSuffix ".so" baseName ||
|
||||||
|
@ -45,19 +45,7 @@ let
|
|||||||
raw = "img";
|
raw = "img";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Copied from https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/cd-dvd/channel.nix
|
nixpkgs = lib.cleanSource pkgs.path;
|
||||||
# TODO: factor out more cleanly
|
|
||||||
|
|
||||||
# Do not include these things:
|
|
||||||
# - The '.git' directory
|
|
||||||
# - Result symlinks from nix-build ('result', 'result-2', 'result-bin', ...)
|
|
||||||
# - VIM/Emacs swap/backup files ('.swp', '.swo', '.foo.swp', 'foo~', ...)
|
|
||||||
filterFn = path: type: let basename = baseNameOf (toString path); in
|
|
||||||
if type == "directory" then basename != ".git"
|
|
||||||
else if type == "symlink" then builtins.match "^result(|-.*)$" basename == null
|
|
||||||
else builtins.match "^((|\..*)\.sw[a-z]|.*~)$" basename == null;
|
|
||||||
|
|
||||||
nixpkgs = builtins.filterSource filterFn pkgs.path;
|
|
||||||
|
|
||||||
channelSources = pkgs.runCommand "nixos-${config.system.nixosVersion}" {} ''
|
channelSources = pkgs.runCommand "nixos-${config.system.nixosVersion}" {} ''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
|
@ -6,16 +6,7 @@
|
|||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
# Do not include these things:
|
nixpkgs = lib.cleanSource pkgs.path;
|
||||||
# - The '.git' directory
|
|
||||||
# - Result symlinks from nix-build ('result', 'result-2', 'result-bin', ...)
|
|
||||||
# - VIM/Emacs swap/backup files ('.swp', '.swo', '.foo.swp', 'foo~', ...)
|
|
||||||
filterFn = path: type: let basename = baseNameOf (toString path); in
|
|
||||||
if type == "directory" then basename != ".git"
|
|
||||||
else if type == "symlink" then builtins.match "^result(|-.*)$" basename == null
|
|
||||||
else builtins.match "^((|\..*)\.sw[a-z]|.*~)$" basename == null;
|
|
||||||
|
|
||||||
nixpkgs = builtins.filterSource filterFn pkgs.path;
|
|
||||||
|
|
||||||
# We need a copy of the Nix expressions for Nixpkgs and NixOS on the
|
# We need a copy of the Nix expressions for Nixpkgs and NixOS on the
|
||||||
# CD. These are installed into the "nixos" channel of the root
|
# CD. These are installed into the "nixos" channel of the root
|
||||||
|
Loading…
Reference in New Issue
Block a user