summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/tabular/default.nix
blob: a649ca04fecbca025591424fc3d4962381cb8b62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, csv, html, mtl }:

cabal.mkDerivation (self: {
  pname = "tabular";
  version = "0.2.2.3";
  sha256 = "cf6d9f1928ec6981edcbb06c4dcbaea7a96deef5272192ad4290caa18711ea76";
  buildDepends = [ csv html mtl ];
  meta = {
    homepage = "http://patch-tag.com/r/kowey/tabular";
    description = "Two-dimensional data tables with rendering functions";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})