forked from DGNum/colmena
default.nix: Fix CI failure
This commit is contained in:
parent
810885af81
commit
50300dc0e7
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ in rustPlatform.buildRustPackage {
|
|||
version = "0.1.0";
|
||||
|
||||
src = lib.cleanSourceWith {
|
||||
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "manual" ]);
|
||||
src = pkgs.nix-gitignore.gitignoreSource [] ./.;
|
||||
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "target" "manual" ]);
|
||||
src = lib.cleanSource ./.;
|
||||
};
|
||||
|
||||
cargoLock = {
|
||||
|
|
Loading…
Reference in a new issue