examples/krops: fix nixpkgs symlink sync error on macOS/BSD

This commit is contained in:
Erik Arvstedt 2022-07-04 23:40:23 +02:00
parent 14722d2c0d
commit 3f3f31c32d
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
1 changed files with 10 additions and 0 deletions

View File

@ -18,6 +18,16 @@ krops.lib.evalSource [({
nixpkgs.file = {
path = toString <nixpkgs>;
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 = {