2011-10-02 22:27:46 +02:00
|
|
|
{ cabal, aesonNative, blazeHtml, clientsession, cmdargs, dataObject
|
|
|
|
, dataObjectYaml, failure, fileEmbed, hamlet, hledger, hledgerLib
|
|
|
|
, HUnit, ioStorage, parsec, regexpr, safe, shakespeareCss
|
|
|
|
, shakespeareJs, shakespeareText, text, time, transformers, wai
|
|
|
|
, waiExtra, warp, yesod, yesodCore, yesodForm, yesodJson
|
|
|
|
, yesodStatic
|
2011-09-13 19:35:18 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hledger-web";
|
2011-10-05 19:09:25 +02:00
|
|
|
version = "0.16.3";
|
|
|
|
sha256 = "0jciah0k6i4aa21hgpl1nqfyjkmm5kg5zmzmxwynvwckncy17ihg";
|
2011-09-13 19:35:18 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-10-02 22:27:46 +02:00
|
|
|
aesonNative blazeHtml clientsession cmdargs dataObject
|
|
|
|
dataObjectYaml failure fileEmbed hamlet hledger hledgerLib HUnit
|
|
|
|
ioStorage parsec regexpr safe shakespeareCss shakespeareJs
|
|
|
|
shakespeareText text time transformers wai waiExtra warp yesod
|
|
|
|
yesodCore yesodForm yesodJson yesodStatic
|
2011-09-13 19:35:18 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://hledger.org";
|
|
|
|
description = "A web interface for the hledger accounting tool";
|
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-09-14 19:13:22 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-09-13 19:35:18 +02:00
|
|
|
};
|
|
|
|
})
|