mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
shell-conduit: disable tests on Darwin to fix build
This commit is contained in:
parent
42f2439228
commit
12aa8b2f2b
1 changed files with 4 additions and 0 deletions
|
@ -104,6 +104,10 @@ self: super: {
|
|||
# Fix test trying to access /home directory
|
||||
shell-conduit = (overrideCabal super.shell-conduit (drv: {
|
||||
postPatch = "sed -i s/home/tmp/ test/Spec.hs";
|
||||
|
||||
# the tests for shell-conduit on Darwin illegitimatey assume non-GNU echo
|
||||
# see: https://github.com/psibi/shell-conduit/issues/12
|
||||
doCheck = !pkgs.stdenv.hostPlatform.isDarwin;
|
||||
}));
|
||||
|
||||
# https://github.com/froozen/kademlia/issues/2
|
||||
|
|
Loading…
Reference in a new issue