summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/json/default.nix
blob: 9a56f412fe2b11586aa56f8a7ef440fd4252ff2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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 ];
  };
})