1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 16:26:48 -04:00
nixpkgs/pkgs/development/libraries/haskell/aeson/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

26 lines
795 B
Nix

{ cabal, attoparsec, blazeBuilder, deepseq, dlist, hashable, mtl
, QuickCheck, syb, testFramework, testFrameworkQuickcheck2, text
, time, unorderedContainers, vector
}:
cabal.mkDerivation (self: {
pname = "aeson";
version = "0.6.1.0";
sha256 = "16hjwcybmgmk1sg8x02r9bxisx4gl61rlq8w2zsxfgkxwjpfhkbx";
buildDepends = [
attoparsec blazeBuilder deepseq dlist hashable mtl syb text time
unorderedContainers vector
];
testDepends = [
attoparsec QuickCheck testFramework testFrameworkQuickcheck2 text
time
];
meta = {
homepage = "https://github.com/bos/aeson";
description = "Fast JSON parsing and encoding";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})