summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bson/default.nix
blob: d14b0c990c85700140d4e52843b442ee01dda703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ cabal, binary, compactStringFix, cryptohash, dataBinaryIeee754
, mtl, network, time
}:

cabal.mkDerivation (self: {
  pname = "bson";
  version = "0.1.6";
  sha256 = "0w9dab8x6b3dwk2afy0gnmrvcvx2dshwhjvlr2k69nchid4wh823";
  buildDepends = [
    binary compactStringFix cryptohash dataBinaryIeee754 mtl network
    time
  ];
  meta = {
    homepage = "http://github.com/TonyGen/bson-haskell";
    description = "BSON documents are JSON-like objects with a standard binary encoding";
    license = "unknown";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})