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

cabal.mkDerivation (self: {
  pname = "json";
  version = "0.4.4";
  sha256 = "102qmz55b2mgcca3q1c2pkcr6hz7kmpldad3f6blhmp1cz15f081";
  buildDepends = [ mtl parsec syb ];
  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
    ];
  };
})