Revert "srcOnly: reflink if possible and preserve attributes"

This reverts commit 7173eb87b8720da79989bbf1ed1fa72465323778.

Reason for revert: This causes too big a rebuild for master (since GHC
uses srcOnly). This went unnoticed due to a stale ofborg rebuild count.
This commit is contained in:
sternenseemann 2024-05-27 02:07:07 +02:00
parent e047b23254
commit 610ee378fc

@ -13,7 +13,7 @@ let
in
stdenv.mkDerivation (args // {
name = "${name}-source";
installPhase = "cp -pr --reflink=auto -- . $out";
installPhase = "cp -r . $out";
outputs = [ "out" ];
separateDebugInfo = false;
dontUnpack = false;