2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, aeson, blazeHtml, cabalFileTh, clientsession, cmdargs
|
|
|
|
, dataObject, dataObjectYaml, failure, fileEmbed, filepath, hamlet
|
2012-03-05 12:58:21 +01:00
|
|
|
, hledger, hledgerLib, httpEnumerator, HUnit, ioStorage, parsec
|
|
|
|
, regexpr, safe, shakespeareCss, shakespeareJs, shakespeareText
|
|
|
|
, text, time, tlsExtra, transformers, wai, waiExtra, warp, yesod
|
|
|
|
, yesodCore, yesodForm, yesodJson, yesodStatic
|
2011-09-13 19:35:18 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hledger-web";
|
2012-03-05 12:58:21 +01:00
|
|
|
version = "0.17.1";
|
|
|
|
sha256 = "0cix0k2skbrcbjhj876cx4mizjvkqnr91s092a3lg4rv40dhgwa9";
|
2011-09-13 19:35:18 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
aeson blazeHtml cabalFileTh clientsession cmdargs dataObject
|
2012-02-14 18:00:37 +01:00
|
|
|
dataObjectYaml failure fileEmbed filepath hamlet hledger hledgerLib
|
2012-03-05 12:58:21 +01:00
|
|
|
httpEnumerator HUnit ioStorage parsec regexpr safe shakespeareCss
|
|
|
|
shakespeareJs shakespeareText text time tlsExtra 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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-13 19:35:18 +02:00
|
|
|
};
|
|
|
|
})
|