From 3f5dcbc1c28edd2ab31b9bac27cc63de4e56b87c Mon Sep 17 00:00:00 2001 From: Konrad Malik Date: Tue, 7 Jan 2025 18:28:18 +0100 Subject: [PATCH] fix: buildVimPlugin (#933) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * flake.lock: Update Flake lock file updates: • Updated input 'nixpkgs': 'github:nixos/nixpkgs/4989a246d7a390a859852baddb1013f825435cee?narHash=sha256-kMBQ5PRiFLagltK0sH%2B08aiNt3zGERC2297iB6vrvlU%3D' (2024-12-17) → 'github:nixos/nixpkgs/b30f97d8c32d804d2d832ee837d0f1ca0695faa5?narHash=sha256-U47xeACNBpkSO6IcCm0XvahsVXpJXzjPIQG7TZlOToU%3D' (2025-01-06) * fix(nix): ignore docs folder and repro.lua --- flake.lock | 6 +++--- flake.nix | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index a8aefbb8..76674487 100644 --- a/flake.lock +++ b/flake.lock @@ -41,11 +41,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1734435836, - "narHash": "sha256-kMBQ5PRiFLagltK0sH+08aiNt3zGERC2297iB6vrvlU=", + "lastModified": 1736166416, + "narHash": "sha256-U47xeACNBpkSO6IcCm0XvahsVXpJXzjPIQG7TZlOToU=", "owner": "nixos", "repo": "nixpkgs", - "rev": "4989a246d7a390a859852baddb1013f825435cee", + "rev": "b30f97d8c32d804d2d832ee837d0f1ca0695faa5", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 4da984e3..6b435d82 100644 --- a/flake.nix +++ b/flake.nix @@ -36,8 +36,9 @@ ./rust-toolchain.toml ]; # nvim source files - # all that are not nix, nor rust - nvimFs = fs.difference ./. (fs.union nixFs rustFs); + # all that are not nix, nor rust, nor other ignored files + nvimFs = + fs.difference ./. (fs.unions [ nixFs rustFs ./docs ./repro.lua ]); version = "0.9.3"; in { blink-fuzzy-lib = let