haskell-hledger-web: re-generate with recent version of cabal2nix

This commit is contained in:
Peter Simons 2013-02-25 01:44:44 +01:00
parent e16c5eab9f
commit f5b6a52f0e

View File

@ -4,6 +4,7 @@
, parsec, regexpr, safe, shakespeareCss, shakespeareJs , parsec, regexpr, safe, shakespeareCss, shakespeareJs
, shakespeareText, text, time, transformers, wai, waiExtra, warp , shakespeareText, text, time, transformers, wai, waiExtra, warp
, yaml, yesod, yesodCore, yesodDefault, yesodForm, yesodStatic , yaml, yesod, yesodCore, yesodDefault, yesodForm, yesodStatic
, yesodTest
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
@ -19,6 +20,7 @@ cabal.mkDerivation (self: {
shakespeareJs shakespeareText text time transformers wai waiExtra shakespeareJs shakespeareText text time transformers wai waiExtra
warp yaml yesod yesodCore yesodDefault yesodForm yesodStatic warp yaml yesod yesodCore yesodDefault yesodForm yesodStatic
]; ];
testDepends = [ yesodCore yesodDefault yesodTest ];
patchPhase = '' patchPhase = ''
sed -r -i -e 's|blaze-html * >= 0.5 *&& < 0.6|blaze-html >= 0.5|' hledger-web.cabal sed -r -i -e 's|blaze-html * >= 0.5 *&& < 0.6|blaze-html >= 0.5|' hledger-web.cabal
''; '';
@ -28,6 +30,5 @@ cabal.mkDerivation (self: {
description = "A web interface for the hledger accounting tool"; description = "A web interface for the hledger accounting tool";
license = "GPL"; license = "GPL";
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
}; };
}) })