2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, HUnit, mtl, parsec, regexpr, safe, split, time, utf8String
|
|
|
|
}:
|
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-lib";
|
|
|
|
version = "0.14";
|
|
|
|
sha256 = "9a6d6ab4383800279e135e9bbcd886e95cea45232d093202c5d43e6edd1f927c";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
|
|
|
HUnit mtl parsec regexpr safe split time utf8String
|
|
|
|
];
|
2011-07-20 20:20:42 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://hledger.org";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Reusable types and utilities for the hledger accounting tool and financial apps in general";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-20 20:20:42 +02:00
|
|
|
};
|
|
|
|
})
|