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

cabal.mkDerivation (self: {
  pname = "pipes-aeson";
  version = "0.4.1";
  sha256 = "06fxl4az5brbivc5db498fc3yawrc2rwnrn20rbssihd0lp9xm1i";
  buildDepends = [
    aeson attoparsec pipes pipesAttoparsec pipesBytestring 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 ];
  };
})