haskellPackages.shell-conduit: fix failing test

This commit is contained in:
rnhmjoj 2017-08-15 06:02:19 +02:00 committed by Domen Kožar
parent 698efcb7b5
commit da8712e4e9

View file

@ -87,6 +87,11 @@ self: super: {
hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify;
};
# Fix test trying to access /home directory
shell-conduit = (overrideCabal super.shell-conduit (drv: {
postPatch = "sed -i s/home/tmp/ test/Spec.hs";
}));
# https://github.com/froozen/kademlia/issues/2
kademlia = dontCheck super.kademlia;