summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/blaze-textual/default.nix
blob: ede82e5c2ed331e33f8a6d4869861665c7078510 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ cabal, blazeBuilder, doubleConversion, QuickCheck, testFramework
, testFrameworkQuickcheck2, text, time, vector
}:

cabal.mkDerivation (self: {
  pname = "blaze-textual";
  version = "0.2.0.8";
  sha256 = "0zzqh53ywzz8ss58glp3i8is8gry5yqzvdjw4xh95fbbzcz4cgc7";
  buildDepends = [ blazeBuilder text time vector ];
  testDepends = [
    blazeBuilder doubleConversion QuickCheck testFramework
    testFrameworkQuickcheck2
  ];
  meta = {
    homepage = "http://github.com/bos/blaze-textual";
    description = "Fast rendering of common datatypes";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})