2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, cmdargs, filepath, HUnit, mtl, parsec, regexpr, safe
|
|
|
|
, split, time, utf8String
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2011-07-20 11:20:42 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-20 11:20:42 -07:00
|
|
|
pname = "hledger-lib";
|
2012-02-02 02:37:53 -08:00
|
|
|
version = "0.17";
|
|
|
|
sha256 = "0dlm3hjbcf48nzz597ag1q9y0phsc09062wvzpmfkhk4hsijpds4";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
cmdargs filepath HUnit mtl parsec regexpr safe split time
|
2012-02-14 09:00:37 -08:00
|
|
|
utf8String
|
2011-08-09 16:00:20 -07:00
|
|
|
];
|
2011-07-20 11:20:42 -07:00
|
|
|
meta = {
|
2011-08-09 16:00:20 -07:00
|
|
|
homepage = "http://hledger.org";
|
2011-09-02 11:02:16 -07:00
|
|
|
description = "Core data types, parsers and utilities for the hledger accounting tool";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-20 11:20:42 -07:00
|
|
|
};
|
|
|
|
})
|