2014-04-17 19:12:58 +00:00
|
|
|
{ cabal, cmdargs, csv, filepath, HUnit, mtl, parsec, prettyShow
|
|
|
|
, regexpr, regexTdfa, safe, split, testFramework
|
2013-06-02 16:07:02 +00:00
|
|
|
, testFrameworkHunit, time, transformers, 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";
|
2014-05-09 22:18:13 +00:00
|
|
|
version = "0.23.2";
|
|
|
|
sha256 = "1z9gxbah649r9vzq012mqnk07rfnd6c4ik82klksk0zzd4yxf07d";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [
|
2014-04-17 19:12:58 +00:00
|
|
|
cmdargs csv filepath HUnit mtl parsec prettyShow regexpr regexTdfa
|
|
|
|
safe split time transformers utf8String
|
2011-08-09 23:00:20 +00:00
|
|
|
];
|
2013-06-02 16:07:02 +00:00
|
|
|
testDepends = [
|
2014-04-17 19:12:58 +00:00
|
|
|
cmdargs csv filepath HUnit mtl parsec prettyShow regexpr regexTdfa
|
|
|
|
safe split testFramework testFrameworkHunit time transformers
|
2013-06-02 16:07:02 +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;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-20 18:20:42 +00:00
|
|
|
};
|
|
|
|
})
|