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: utACK3f3f31c32d
Tree-SHA512: ce30e5b256047ba7e22186880c499164edfb35a6194eb30c85fc2c6c1805ee6d2777e427260954872b3872fa74e1e1db5179c18a11e9367d02970785a074b167
This commit is contained in:
commit
a5b9e34f16
@ -18,6 +18,16 @@ krops.lib.evalSource [({
|
|||||||
nixpkgs.file = {
|
nixpkgs.file = {
|
||||||
path = toString <nixpkgs>;
|
path = toString <nixpkgs>;
|
||||||
useChecksum = true;
|
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 = {
|
nix-bitcoin.file = {
|
||||||
|
Loading…
Reference in New Issue
Block a user