summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/json/default.nix
blob: 3e2f2cca387fd8b7e421c1fe7b04d369af2a25a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, mtl, parsec, syb, text }:

cabal.mkDerivation (self: {
  pname = "json";
  version = "0.7";
  sha256 = "18v8vbx3pyskf3ap4lpy2d3461gghfsq5bzjyrjvqsd2r9r44rfk";
  buildDepends = [ mtl parsec syb text ];
  meta = {
    description = "Support for serialising Haskell to and from JSON";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})