d98161617f
- hinotify: added meta.maintainers section - hledger-lib: update to version 0.18.1 - hledger: update to version 0.18.1 - hledger-web: update to version 0.18.1 - lifted-base: update to version 0.1.1.1 - monad-control: update to version 0.3.1.4 - multiarg: update to version 0.4.0.0 - pandoc: update to version 1.9.4.2 - shelly: update to version 0.12.2
28 lines
978 B
Nix
28 lines
978 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.1";
|
|
sha256 = "1khjqqjjcwcymyh395rfc39wzybacw5n64wmj2sixyw0p1l4mwg7";
|
|
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 ];
|
|
};
|
|
})
|