build: limit files passed to nix
Alan Pearce alan@alanpearce.eu
Sun, 12 May 2024 21:29:47 +0200
1 files changed, 14 insertions(+), 1 deletions(-)
jump to
M default.nix → default.nix
@@ -18,7 +18,20 @@ searchix = pkgs.buildGoApplication { pname = "searchix"; version = "0.1"; - src = builtins.filterSource (_: type: type != "symlink") ./.; + src = with pkgs.lib.fileset; toSource { + root = ./.; + fileset = intersection + (unions [ + ./go.mod + ./go.sum + ./serve + ./import + ./internal + ./frontend + ]) + (gitTracked ./.); + }; + patchPhase = '' cp ${css} frontend/static/base.css '';