From 0f1a8d59d56ae1a419f692cb67b71c6d642ff615 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Fri, 6 Sep 2019 21:44:27 +0200 Subject: [PATCH] Use cleanSourceWith again --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index f52045d..888bab0 100644 --- a/default.nix +++ b/default.nix @@ -5,9 +5,9 @@ in { inherit (find-files) gitignoreFilter; - gitignoreSource = path: builtins.path { + gitignoreSource = path: lib.cleanSourceWith { name = "source"; filter = find-files.gitignoreFilter path; - inherit path; + src = path; }; }