Merge pull request #28097 from cocreature/sdistTarball-doc
haskell: remove any extraneous outputs from sdistTarball
This commit is contained in:
commit
b6a746daa1
|
@ -75,6 +75,9 @@ rec {
|
||||||
|
|
||||||
sdistTarball = pkg: lib.overrideDerivation pkg (drv: {
|
sdistTarball = pkg: lib.overrideDerivation pkg (drv: {
|
||||||
name = "${drv.pname}-source-${drv.version}";
|
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";
|
buildPhase = "./Setup sdist";
|
||||||
haddockPhase = ":";
|
haddockPhase = ":";
|
||||||
checkPhase = ":";
|
checkPhase = ":";
|
||||||
|
|
Loading…
Reference in New Issue