2013-06-02 18:07:03 +02:00
|
|
|
{ cabal, cmdargs, csv, filepath, haskeline, hledgerLib, HUnit, mtl
|
|
|
|
, parsec, prettyShow, regexCompat, regexpr, safe, shakespeareText
|
|
|
|
, split, testFramework, testFrameworkHunit, text, time
|
|
|
|
, transformers, utf8String
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-07-20 20:20:42 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-20 20:20:42 +02:00
|
|
|
pname = "hledger";
|
2013-07-01 11:04:04 +02:00
|
|
|
version = "0.21.3";
|
|
|
|
sha256 = "14j0axlq6xfaih7m6lqpis26ya0yl4v6g6xrqbihmjddvx7j32f2";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-10-23 18:29:59 +02:00
|
|
|
cmdargs filepath haskeline hledgerLib HUnit mtl parsec regexpr safe
|
|
|
|
shakespeareText split text time utf8String
|
2011-08-10 01:00:20 +02:00
|
|
|
];
|
2013-06-02 18:07:03 +02:00
|
|
|
testDepends = [
|
|
|
|
cmdargs csv filepath haskeline hledgerLib HUnit mtl parsec
|
|
|
|
prettyShow regexCompat regexpr safe shakespeareText split
|
|
|
|
testFramework testFrameworkHunit text time transformers
|
|
|
|
];
|
2011-07-20 20:20:42 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://hledger.org";
|
2011-09-02 20:02:24 +02:00
|
|
|
description = "The main command-line interface for the hledger accounting tool";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = "GPL";
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-20 20:20:42 +02:00
|
|
|
};
|
|
|
|
})
|