From dddffef2dda9089a1618852aff4ff0f3db901c89 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 13 Jun 2022 12:03:18 +1000 Subject: [PATCH] Nix expr: don't filter when copying local source tree into store --- default.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/default.nix b/default.nix index 9c52a8e78c..4255b25580 100644 --- a/default.nix +++ b/default.nix @@ -14,13 +14,7 @@ version = "2.8.1-local"; # distinguishes parallel installs' config and other data shorthash = "000000000"; # this and the branch name are written into movies and savestates, written to config to detect in-place upgrades (N/A to Nix), and of course also shown in the About dialog branch = "master"; # must be regex-escaped (interpolated as `sed "s/.../${branch}/"`) - drv = builtins.path { - path = ./.; - name = "BizHawk-${version}"; - filter = let # this is just for speed, not any r13y concern - denyList = [ ".git" ".idea" "ExternalCoreProjects" "ExternalProjects" "ExternalToolProjects" "libHawk" "libmupen64plus" "LibretroBridge" "LuaInterface" "lynx" "psx" "quicknes" "submodules" "waterbox" "wonderswan" ]; - in path: type: type == "regular" || (type == "directory" && !builtins.elem (baseNameOf path) denyList); - }; + drv = builtins.path { path = ./.; name = "BizHawk-${version}"; }; # did have filter here for speed, but it wasn't faster and it wasn't correct and it couldn't be made correct and I'm mad } # makedeps , dotnet-sdk_5 ? pkgs.dotnetCorePackages.sdk_5_0