lol

Revert "stdenv/setup.sh: unbreak *.lz sources on darwin"

This reverts commit fcafdd27616b91049c506441802b9cfe970388d4. We're
trying to modularise stdenv, not add more ad-hoc compression support.

-4
-4
pkgs/stdenv/generic/setup.sh
··· 450 450 # Don't rely on tar knowing about .xz. 451 451 xz -d < $curSrc | tar xf - 452 452 ;; 453 - *.tar.lz ) 454 - # Don't rely on tar knowing about .lz. 455 - lzip -d < $curSrc | tar xf - 456 - ;; 457 453 *.tar | *.tar.* | *.tgz | *.tbz2) 458 454 # GNU tar can automatically select the decompression method 459 455 # (info "(tar) gzip").