A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

crane: Ignore flake directory

+9 -1
+9 -1
crane.nix
··· 27 27 let 28 28 version = "0.1.0"; 29 29 30 - ignoredPaths = [ ".github" "target" "book" "nixos" "integration-tests" ]; 30 + ignoredPaths = [ 31 + ".ci" 32 + ".github" 33 + "book" 34 + "flake" 35 + "integration-tests" 36 + "nixos" 37 + "target" 38 + ]; 31 39 32 40 src = lib.cleanSourceWith { 33 41 filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) ignoredPaths);