examples/krops: fix nixpkgs symlink sync error on macOS/BSD
This commit is contained in:
parent
14722d2c0d
commit
3f3f31c32d
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue
Block a user