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

cabal.mkDerivation (self: {
  pname = "json-types";
  version = "0.1";
  sha256 = "088if9qv0didjyb6y1583viihjgc4nwr61qfjqdg9rzc2ya6vqdn";
  buildDepends = [ text ];
  meta = {
    description = "Basic types for representing JSON";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})