nixpkgs/pkgs/development/libraries/haskell/process-conduit/default.nix
John Wiegley d58370db24 haskell-process-conduit: temporarily disable tests
The tests have not been ported to use conduit-1.1 yet (there is a pull
request pending on GitHub).
2014-05-29 07:29:20 +00:00

23 lines
716 B
Nix

{ cabal, conduit, controlMonadLoop, hspec, mtl, resourcet
, shakespeare, shakespeareText, text
}:
cabal.mkDerivation (self: {
pname = "process-conduit";
version = "1.1.0.0";
sha256 = "1b3snck651cpb7i3c78cn264zrjan3lzydf59209abkvb6fv1hql";
buildDepends = [
conduit controlMonadLoop mtl resourcet shakespeare shakespeareText
text
];
testDepends = [ conduit hspec ];
# This check is being disabled until process-conduit is updated to properly
# support conduit 1.1.x
doCheck = false;
meta = {
homepage = "http://github.com/tanakh/process-conduit";
description = "Conduits for processes";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})