mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
9 lines
198 B
Plaintext
9 lines
198 B
Plaintext
for dir in pkg-config-*; do
|
|
[ -d "$dir" ] || continue
|
|
|
|
echo "Patching pkg-config registry dep"
|
|
|
|
substituteInPlace "$dir/src/lib.rs" \
|
|
--replace '"/usr"' '"'"$NIX_STORE"'/"'
|
|
done
|