diff options
Diffstat (limited to 'package.nix')
| -rw-r--r-- | package.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/package.nix b/package.nix index 056a9c53..3088ec3e 100644 --- a/package.nix +++ b/package.nix @@ -30,10 +30,7 @@ buildGoModule rec { src = builtins.path { name = "${pname}-src"; path = lib.cleanSource ./.; - filter = - path: type: - !(type == "regular" && (lib.hasSuffix ".nix" path || lib.hasSuffix ".py" path)) - && !(type == "directory" && lib.hasSuffix "/cmd/fsu" path); + filter = path: type: !(type == "regular" && (lib.hasSuffix ".nix" path || lib.hasSuffix ".py" path)) && !(type == "directory" && lib.hasSuffix "/cmd/fsu" path); }; vendorHash = null; |
