Fix hastache build error.

`hastache` has no binary output but for `mkReadme`, so disable the
separate bin output and keep removing the `mkReadme`.
This commit is contained in:
Nicholas Clarke 2017-08-15 15:08:34 +01:00
parent 330d874ee3
commit 77cfb96fb1

View file

@ -862,6 +862,7 @@ self: super: {
# Don't install internal mkReadme tool.
hastache = overrideCabal super.hastache (drv: {
doCheck = false;
enableSeparateBinOutput = false;
postInstall = "rm $out/bin/mkReadme && rmdir $out/bin";
});