Add haskell-aeson-qq

This commit is contained in:
Simon Hengel 2014-06-03 21:14:04 +08:00
parent 36f5ede37a
commit e9ec238377
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ cabal, aeson, haskellSrcMeta, hspec, parsec, text, vector }:
cabal.mkDerivation (self: {
pname = "aeson-qq";
version = "0.6.1";
sha256 = "164nqk1qfb8a9c95yv5hg0zgcjcg49vrra2wi00h325bgpq6wa5n";
buildDepends = [ aeson haskellSrcMeta parsec text vector ];
testDepends = [ aeson hspec ];
meta = {
homepage = "http://github.com/zalora/aeson-qq";
description = "Json Quasiquatation for Haskell";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -145,6 +145,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
aesonPretty = callPackage ../development/libraries/haskell/aeson-pretty {};
aesonQq = callPackage ../development/libraries/haskell/aeson-qq {};
alternativeIo = callPackage ../development/libraries/haskell/alternative-io {};
alsaCore = callPackage ../development/libraries/haskell/alsa-core {};