mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
c01f509e44
if theres a source $stdenv then this is needed for structuredAttrs
13 lines
267 B
Bash
13 lines
267 B
Bash
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
source $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
|