05d92999a0
- HDBC-postgresql updated to version 2.3.2.1 - HsOpenSSL updated to version 0.10.1.3 - hledger-web updated to version 0.17.1 - persistent updated to version 0.8.0.2 - xml-conduit updated to version 0.5.3.1 - haddock: added version 2.10.0 svn path=/nixpkgs/trunk/; revision=32799
33 lines
1.2 KiB
Nix
33 lines
1.2 KiB
Nix
{ cabal, aeson, blazeHtml, cabalFileTh, clientsession, cmdargs
|
|
, dataObject, dataObjectYaml, failure, fileEmbed, filepath, hamlet
|
|
, hledger, hledgerLib, httpEnumerator, HUnit, ioStorage, parsec
|
|
, regexpr, safe, shakespeareCss, shakespeareJs, shakespeareText
|
|
, text, time, tlsExtra, transformers, wai, waiExtra, warp, yesod
|
|
, yesodCore, yesodForm, yesodJson, yesodStatic
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hledger-web";
|
|
version = "0.17.1";
|
|
sha256 = "0cix0k2skbrcbjhj876cx4mizjvkqnr91s092a3lg4rv40dhgwa9";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
aeson blazeHtml cabalFileTh clientsession cmdargs dataObject
|
|
dataObjectYaml failure fileEmbed filepath hamlet hledger hledgerLib
|
|
httpEnumerator HUnit ioStorage parsec regexpr safe shakespeareCss
|
|
shakespeareJs shakespeareText text time tlsExtra transformers wai
|
|
waiExtra warp yesod yesodCore yesodForm yesodJson yesodStatic
|
|
];
|
|
meta = {
|
|
homepage = "http://hledger.org";
|
|
description = "A web interface for the hledger accounting tool";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|