summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hledger-lib/default.nix
blob: 569bd7c5291f36eee2f1ff06ca9fb1f7d9457995 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ cabal, HUnit, mtl, parsec, regexpr, safe, split, time, utf8String
}:

cabal.mkDerivation (self: {
  pname = "hledger-lib";
  version = "0.14";
  sha256 = "9a6d6ab4383800279e135e9bbcd886e95cea45232d093202c5d43e6edd1f927c";
  buildDepends = [
    HUnit mtl parsec regexpr safe split time utf8String
  ];
  meta = {
    homepage = "http://hledger.org";
    description = "Reusable types and utilities for the hledger accounting tool and financial apps in general";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})