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";
|
version = "0.1.0";
|
||||||
|
|
||||||
src = lib.cleanSourceWith {
|
src = lib.cleanSourceWith {
|
||||||
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "manual" ]);
|
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "target" "manual" ]);
|
||||||
src = pkgs.nix-gitignore.gitignoreSource [] ./.;
|
src = lib.cleanSource ./.;
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
|
|
Loading…
Reference in a new issue