Don't build separate bin output for alex.

It has files in /usr/share which reference the bin output.
This commit is contained in:
Nicholas Clarke
2017-09-04 12:35:57 +01:00
parent cd24744506
commit a1d78fa5bc
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -142,6 +142,8 @@ rec {
overrideSrc = drv: { src, version ? drv.version }:
overrideCabal drv (_: { inherit src version; editedCabalFile = null; });
hasNoBinOutput = drv: overrideCabal drv (drv: { enableSeparateBinOutput = false; });
installOutputs = drv: outputs: overrideCabal drv
(drv: { outputsToInstall = outputs; });
}