mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03: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
|