about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/json/default.nix
blob: ce0d150c045b5f340f1a7429ba495abb92fc8078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# syb isn't listed by the HackageDB web interface, but is
# a dependency for Text.JSON.Generic which is only exposed
# if syb is available.
{cabal, mtl, syb}:

cabal.mkDerivation (self : {
  pname = "json";
  version = "0.4.4";
  sha256 = "102qmz55b2mgcca3q1c2pkcr6hz7kmpldad3f6blhmp1cz15f081";
  propagatedBuildInputs = [mtl syb];
  meta = {
    description = "Support for serialising Haskell to and from JSON";
  };
})