mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
12 lines
215 B
Bash
12 lines
215 B
Bash
|
. $stdenv/setup
|
||
|
|
||
|
genericBuild
|
||
|
|
||
|
# !!! hack
|
||
|
export ALL_INPUTS="$out $pkgs"
|
||
|
|
||
|
find $out -name "*.dll.config" | while read configFile; do
|
||
|
echo "modifying config file $configFile"
|
||
|
$monoDLLFixer "$configFile"
|
||
|
done
|