3
0
Fork 0
forked from mirrors/nixpkgs

haskell: remove any extraneous outputs from sdistTarball

This commit is contained in:
Moritz Kiefer 2017-08-10 08:47:07 +02:00
parent b224644795
commit 291da85ed9

View file

@ -75,6 +75,9 @@ rec {
sdistTarball = pkg: lib.overrideDerivation pkg (drv: {
name = "${drv.pname}-source-${drv.version}";
# Since we disable the haddock phase, we also need to override the
# outputs since the separate doc output will not be produced.
outputs = ["out"];
buildPhase = "./Setup sdist";
haddockPhase = ":";
checkPhase = ":";