haskellPackages.shell-conduit: fix failing test

wip/yesman
rnhmjoj 7 years ago committed by Domen Kožar
parent 698efcb7b5
commit da8712e4e9
  1. 5
      pkgs/development/haskell-modules/configuration-common.nix

@ -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;

Loading…
Cancel
Save