lol

srcOnly: fix with separateDebugInfo and/or multiple outputs

Before this change `srcOnly git` gives:

duplicate derivation output 'debug', at pkgs/stdenv/generic/make-derivation.nix:270:7

This was because separateDebugInfo = true was passed on to the srcOnly
mkDerivation as well as the outputs list _including_ the debug output.
Luckily we don't need to untangle this mess since srcOnly is only
supposed to have a single output anyways.

+2
+2
pkgs/build-support/src-only/default.nix
··· 15 15 stdenv.mkDerivation (args // { 16 16 name = "${name}-source"; 17 17 installPhase = "cp -r . $out"; 18 + outputs = [ "out" ]; 19 + separateDebugInfo = false; 18 20 phases = ["unpackPhase" "patchPhase" "installPhase"]; 19 21 })