summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pipes-aeson/default.nix
blob: 156b89244ee676c12778290c44939916c4ae3df9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, aeson, attoparsec, pipes, pipesAttoparsec, pipesParse
, transformers
}:

cabal.mkDerivation (self: {
  pname = "pipes-aeson";
  version = "0.2.0";
  sha256 = "12y5dywrhx3mvmlq26bc1cwybnclqbf91zvlz5ig2pi01ji3q94y";
  buildDepends = [
    aeson attoparsec pipes pipesAttoparsec pipesParse transformers
  ];
  meta = {
    homepage = "https://github.com/k0001/pipes-aeson";
    description = "Encode and decode JSON streams using Aeson and Pipes";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.ocharles ];
  };
})