Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 279 B view raw
1# Setup hook for detecting conflicts in Python packages 2echo "Sourcing python-catch-conflicts-hook.sh" 3 4pythonCatchConflictsPhase() { 5 @pythonInterpreter@ @catchConflicts@ 6} 7 8if [ -z "${dontUsePythonCatchConflicts-}" ]; then 9 preDistPhases+=" pythonCatchConflictsPhase" 10fi