2014-06-11 18:49:48 +02:00
|
|
|
{ cabal, pipes, pipesBytestring, pipesGroup, pipesParse, pipesSafe
|
2014-06-12 09:57:50 +02:00
|
|
|
, profunctors, streamingCommons, text, transformers
|
2014-06-11 18:49:48 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pipes-text";
|
2014-06-12 09:57:50 +02:00
|
|
|
version = "0.0.0.11";
|
|
|
|
sha256 = "0c56gxm17bapdjgbp2f55z3f6vq8ryvsljqp3bcjjj18xv5pf1ls";
|
2014-06-11 18:49:48 +02:00
|
|
|
buildDepends = [
|
|
|
|
pipes pipesBytestring pipesGroup pipesParse pipesSafe profunctors
|
2014-06-12 09:57:50 +02:00
|
|
|
streamingCommons text transformers
|
2014-06-11 18:49:48 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/michaelt/text-pipes";
|
|
|
|
description = "Text pipes";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|