nixpkgs/pkgs/development/libraries/haskell/yesod-json/default.nix
Peter Simons 6dbd367227 haskell-yesod-json: updated to version 0.2.2.2
svn path=/nixpkgs/trunk/; revision=31076
2011-12-25 16:06:47 +00:00

24 lines
673 B
Nix

{ cabal, aeson, blazeBuilder, shakespeareJs, text
, unorderedContainers, vector, yesodCore
}:
cabal.mkDerivation (self: {
pname = "yesod-json";
version = "0.2.2.2";
sha256 = "0mhajy0hal9icwys63vcmlipl3gwm8bvv7xywwjydd86drqhz9ni";
buildDepends = [
aeson blazeBuilder shakespeareJs text unorderedContainers vector
yesodCore
];
meta = {
homepage = "http://www.yesodweb.com/";
description = "Generate content for Yesod using the aeson package";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})