Skip to content

Commit

Permalink
Merge #507: examples/krops: fix nixpkgs symlink sync error on macOS/BSD
Browse files Browse the repository at this point in the history
3f3f31c examples/krops: fix nixpkgs symlink sync error on macOS/BSD (Erik Arvstedt)

Pull request description:

ACKs for top commit:
  jonasnick:
    utACK 3f3f31c

Tree-SHA512: ce30e5b256047ba7e22186880c499164edfb35a6194eb30c85fc2c6c1805ee6d2777e427260954872b3872fa74e1e1db5179c18a11e9367d02970785a074b167
  • Loading branch information
jonasnick committed Jul 5, 2022
2 parents 14722d2 + 3f3f31c commit a5b9e34
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions examples/krops/sources.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit a5b9e34

Please sign in to comment.