2011-10-24 21:18:10 +02:00
|
|
|
{ cabal, aesonNative, blazeHtml, cabalFileTh, 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-26 19:39:44 +02:00
|
|
|
version = "0.16.5";
|
|
|
|
sha256 = "0gqhmyl62jkz156gypzxwj46xrh5as3wrvkwrg04wfmpqrac5n06";
|
2011-09-13 19:35:18 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-10-24 21:18:10 +02:00
|
|
|
aesonNative blazeHtml cabalFileTh clientsession cmdargs dataObject
|
2011-10-02 22:27:46 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
})
|