Merge pull request #29188 from LumiGuide/fix-hw-xml

haskell: fix build of hw-xml
This commit is contained in:
Peter Simons 2017-09-10 20:42:41 +02:00 committed by GitHub
commit dc9c2c7bac
1 changed files with 8 additions and 0 deletions

View File

@ -102,6 +102,14 @@ self: super: {
# https://github.com/froozen/kademlia/issues/2
kademlia = dontCheck super.kademlia;
# https://github.com/haskell-works/hw-xml/issues/23
# Disable building the hw-xml-example executable:
hw-xml = (overrideCabal super.hw-xml (drv: {
postPatch = "sed -i 's/ hs-source-dirs: app/" +
" hs-source-dirs: app\\n" +
" buildable: false/' hw-xml.cabal";
}));
hzk = dontCheck super.hzk;
haskakafka = dontCheck super.haskakafka;