summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pipes-text/default.nix
blob: 7156b88978933f338ae667e2ba98f352c6c7b86c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, pipes, pipesBytestring, pipesGroup, pipesParse, pipesSafe
, profunctors, streamingCommons, text, transformers
}:

cabal.mkDerivation (self: {
  pname = "pipes-text";
  version = "0.0.0.11";
  sha256 = "0c56gxm17bapdjgbp2f55z3f6vq8ryvsljqp3bcjjj18xv5pf1ls";
  buildDepends = [
    pipes pipesBytestring pipesGroup pipesParse pipesSafe profunctors
    streamingCommons text transformers
  ];
  meta = {
    homepage = "https://github.com/michaelt/text-pipes";
    description = "Text pipes";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})