2012-11-17 10:39:25 +00:00
|
|
|
{ cabal, blazeHtml, blazeMarkup, clientsession, cmdargs
|
2013-06-02 16:07:03 +00:00
|
|
|
, dataDefault, filepath, hamlet, hjsmin, hledger, hledgerLib, hspec
|
2013-12-14 10:30:18 +00:00
|
|
|
, httpClient, httpConduit, HUnit, json, networkConduit, parsec
|
|
|
|
, regexpr, safe, shakespeareText, text, time, transformers, wai
|
|
|
|
, waiExtra, waiHandlerLaunch, warp, yaml, yesod, yesodCore
|
|
|
|
, yesodStatic, yesodTest
|
2011-09-13 17:35:18 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hledger-web";
|
2013-12-14 10:30:18 +00:00
|
|
|
version = "0.22";
|
|
|
|
sha256 = "0bd1cb6988ainkzi034a4g4xnslqc6djv74gbq58aaxjqn4m7m80";
|
2011-09-13 17:35:18 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-11-17 10:39:25 +00:00
|
|
|
blazeHtml blazeMarkup clientsession cmdargs dataDefault filepath
|
2013-12-14 10:30:18 +00:00
|
|
|
hamlet hjsmin hledger hledgerLib httpClient httpConduit HUnit json
|
2013-06-02 16:07:03 +00:00
|
|
|
networkConduit parsec regexpr safe shakespeareText text time
|
|
|
|
transformers wai waiExtra waiHandlerLaunch warp yaml yesod
|
2013-07-10 23:31:48 +00:00
|
|
|
yesodCore yesodStatic
|
2011-09-13 17:35:18 +00:00
|
|
|
];
|
2013-06-02 16:07:03 +00:00
|
|
|
testDepends = [ hspec yesod yesodTest ];
|
2013-02-25 01:01:23 +00:00
|
|
|
doCheck = false;
|
2011-09-13 17:35:18 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://hledger.org";
|
|
|
|
description = "A web interface for the hledger accounting tool";
|
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|