2014-03-31 10:20:03 +01:00
|
|
|
{ cabal, conduit, controlMonadLoop, hspec, mtl, shakespeare
|
|
|
|
, shakespeareText, text
|
2013-11-11 11:38:56 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "process-conduit";
|
2014-03-31 10:20:03 +01:00
|
|
|
version = "1.0.0.2";
|
|
|
|
sha256 = "0rz18x7gy8w1h2xq0il49k515n0y3gpxnl7mfgkczc86965w7fzj";
|
2013-11-11 11:38:56 +00:00
|
|
|
buildDepends = [
|
2014-03-31 10:20:03 +01:00
|
|
|
conduit controlMonadLoop mtl shakespeare shakespeareText text
|
2013-11-11 11:38:56 +00:00
|
|
|
];
|
|
|
|
testDepends = [ conduit hspec ];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/tanakh/process-conduit";
|
|
|
|
description = "Conduits for processes";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|