bb2d3311a2
svn path=/nixpkgs/trunk/; revision=34282
28 lines
976 B
Nix
28 lines
976 B
Nix
{ cabal, blazeHtml, cabalFileTh, clientsession, cmdargs, filepath
|
|
, hamlet, hledger, hledgerLib, HUnit, ioStorage, networkConduit
|
|
, parsec, regexpr, safe, shakespeareText, text, time, transformers
|
|
, wai, waiExtra, warp, yaml, yesod, yesodCore, yesodDefault
|
|
, yesodStatic
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hledger-web";
|
|
version = "0.18";
|
|
sha256 = "1cxlyw9rs1pg0ympig9svkfi9fikpbvfzm6jc7hijkg215l617np";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
blazeHtml cabalFileTh clientsession cmdargs filepath hamlet hledger
|
|
hledgerLib HUnit ioStorage networkConduit parsec regexpr safe
|
|
shakespeareText text time transformers wai waiExtra warp yaml yesod
|
|
yesodCore yesodDefault 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 ];
|
|
};
|
|
})
|