Skip to content
Snippets Groups Projects
Commit 8f1cbd6d authored by Daniel Firth's avatar Daniel Firth
Browse files

blaze-textual: init at 0.2.2.1

parent 3ac5ef6e
No related merge requests found
......@@ -100,6 +100,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "bitvec" "1.1.3.0"
, callHackage "binary-orphans" "1.0.3"
, callHackage "blaze-html" "0.9.1.2"
, callHackage "blaze-textual" "0.2.2.1"
, callHackage "blaze-markup" "0.8.2.8"
, callHackage "boring" "0.2"
, callHackage "bsb-http-chunked" "0.0.0.4"
......
......@@ -85,6 +85,8 @@ final: prev: with pkgs.haskell.lib; {
blaze-markup = prev.callPackage (./pkgs/blaze-markup.nix) { };
blaze-textual = prev.callPackage (./pkgs/blaze-textual.nix) { };
boring = prev.callPackage (./pkgs/boring.nix) { };
breakpoint = prev.callPackage (./pkgs/breakpoint.nix) { };
......
{ mkDerivation
, base
, blaze-builder
, bytestring
, double-conversion
, ghc-prim
, integer-gmp
, lib
, old-locale
, QuickCheck
, test-framework
, test-framework-quickcheck2
, text
, time
, vector
}:
mkDerivation {
pname = "blaze-textual";
version = "0.2.2.1";
sha256 = "7a9199740189f435b762d98e65f5d7c0c7a1467e36c11210a8d65e76a5e5567e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
blaze-builder
bytestring
ghc-prim
integer-gmp
old-locale
text
time
vector
];
testHaskellDepends = [
base
blaze-builder
bytestring
double-conversion
QuickCheck
test-framework
test-framework-quickcheck2
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/bos/blaze-textual";
description = "Fast rendering of common datatypes";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment