From 3f3f31c32d072d4b45cb23b98a675f552dcad270 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Mon, 4 Jul 2022 23:40:23 +0200 Subject: [PATCH] examples/krops: fix nixpkgs symlink sync error on macOS/BSD --- examples/krops/sources.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/examples/krops/sources.nix b/examples/krops/sources.nix index 64ae641..2e1ba1f 100644 --- a/examples/krops/sources.nix +++ b/examples/krops/sources.nix @@ -18,6 +18,16 @@ krops.lib.evalSource [({ nixpkgs.file = { path = toString ; useChecksum = true; + # TODO-EXTERNAL: + # Work around symlink sync error on macOS/BSD + # (https://github.com/NixOS/nixpkgs/issues/180046) + # by excluding the single symlink that's present in nixpkgs. + filters = [ + { + type = "exclude"; + pattern = "/pkgs/development/libraries/readline/update-patch-set.sh"; + } + ]; }; nix-bitcoin.file = {