Update yesod-json.

svn path=/nixpkgs/trunk/; revision=28439
This commit is contained in:
Andres Löh 2011-08-09 20:13:22 +00:00
parent b97136492e
commit 1eb2c65731

View File

@ -1,16 +1,15 @@
{cabal, aeson, blazeTextual, hamlet, text, vector, yesodCore}: { cabal, aeson, blazeTextual, hamlet, text, vector, yesodCore }:
cabal.mkDerivation (self : { cabal.mkDerivation (self: {
pname = "yesod-json"; pname = "yesod-json";
version = "0.1.1.1"; version = "0.1.1.2";
sha256 = "02mly02c6z49s0gznx47w919gcn7qz1qvr8704sab1sjk87cyjwl"; sha256 = "0d6dkhzjpxp3687x914h67swm4lgsalb1xr13gz53ddb0qj18n7j";
propagatedBuildInputs = [ buildDepends = [ aeson blazeTextual hamlet text vector yesodCore ];
aeson blazeTextual hamlet text vector yesodCore
];
meta = { meta = {
description = "Generate content for Yesod using the aeson package"; homepage = "http://www.yesodweb.com/";
license = "BSD3"; description = "Generate content for Yesod using the aeson package.";
maintainers = [self.stdenv.lib.maintainers.andres]; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
}; };
}) })