about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/jsonTypes/default.nix
blob: 69c21730c1f47d4dcf931b49d8455079f1bb3959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, text}:

cabal.mkDerivation (self : {
  pname = "json-types";
  version = "0.1";
  sha256 = "088if9qv0didjyb6y1583viihjgc4nwr61qfjqdg9rzc2ya6vqdn";
  propagatedBuildInputs = [text];
  meta = {
    description = "Basic types for representing JSON";
    license = "MIT";
  };
})