2014-04-04 22:30:00 +01:00
|
|
|
{ cabal, conduit, controlMonadLoop, hspec, mtl, resourcet
|
|
|
|
, shakespeare, shakespeareText, text
|
2013-11-11 11:38:56 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "process-conduit";
|
2014-04-04 22:30:00 +01:00
|
|
|
version = "1.1.0.0";
|
|
|
|
sha256 = "1b3snck651cpb7i3c78cn264zrjan3lzydf59209abkvb6fv1hql";
|
2013-11-11 11:38:56 +00:00
|
|
|
buildDepends = [
|
2014-04-04 22:30:00 +01:00
|
|
|
conduit controlMonadLoop mtl resourcet 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;
|
|
|
|
};
|
|
|
|
})
|