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

cabal.mkDerivation (self: {
  pname = "data-object";
  version = "0.3.1.9";
  sha256 = "0z8m23kw8mj6hhy1r8y1vvlxxpwl273dhanszig2673a1sw0l98l";
  buildDepends = [ Cabal failure text time ];
  meta = {
    homepage = "http://github.com/snoyberg/data-object/tree/master";
    description = "Represent hierachichal structures, called objects in JSON. (deprecated)";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})