Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 15 lines 333 B view raw
1# Setup hook to use for eggs 2echo "Sourcing egg-build-hook" 3 4eggBuildPhase() { 5 echo "Executing eggBuildPhase" 6 runHook preBuild 7 8 runHook postBuild 9 echo "Finished executing eggBuildPhase" 10} 11 12if [ -z "${dontUseEggBuild-}" ] && [ -z "${buildPhase-}" ]; then 13 echo "Using eggBuildPhase" 14 buildPhase=eggBuildPhase 15fi