9 lines
194 B
Plaintext
9 lines
194 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
|