nixpkgs/pkgs/development/libraries/haskell/yesod-json/default.nix
Peter Simons 077c598c85 haskell-yesod-json: updated to version 0.2.1
svn path=/nixpkgs/trunk/; revision=28899
2011-08-29 20:28:19 +00:00

19 lines
604 B
Nix

{ cabal, aesonNative, shakespeareJs, text, vector, yesodCore }:
cabal.mkDerivation (self: {
pname = "yesod-json";
version = "0.2.1";
sha256 = "1d710pqrdafyz8s0spd19vwvx5v9kwy44wb0byz3445jhi3kwn88";
buildDepends = [ aesonNative shakespeareJs text 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
];
};
})