Merge fort-nix/nix-bitcoin#507: examples/krops: fix nixpkgs symlink sync error on macOS/BSD

3f3f31c32d examples/krops: fix nixpkgs symlink sync error on macOS/BSD (Erik Arvstedt)

Pull request description:

ACKs for top commit:
  jonasnick:
    utACK 3f3f31c32d

Tree-SHA512: ce30e5b256047ba7e22186880c499164edfb35a6194eb30c85fc2c6c1805ee6d2777e427260954872b3872fa74e1e1db5179c18a11e9367d02970785a074b167
This commit is contained in:
Jonas Nick 2022-07-05 09:32:37 +00:00
commit a5b9e34f16
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
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 = {