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