haskell-text-stream-decode: add version 0.1.0.3

This commit is contained in:
Peter Simons 2014-02-17 12:48:28 +01:00
parent aaa4d951dd
commit 6e28b6ebb8
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ cabal, deepseq, hspec, text }:
cabal.mkDerivation (self: {
pname = "text-stream-decode";
version = "0.1.0.3";
sha256 = "0gz5w7n7yb6z5mfzlg3yg9s89wsqnmmk4j94invj2da0rw7d03xv";
buildDepends = [ text ];
testDepends = [ deepseq hspec text ];
meta = {
homepage = "http://github.com/fpco/text-stream-decode";
description = "Streaming decoding functions for UTF encodings";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2371,6 +2371,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
textIcu = callPackage ../development/libraries/haskell/text-icu {};
textStreamDecode = callPackage ../development/libraries/haskell/text-stream-decode {};
thespian = callPackage ../development/libraries/haskell/thespian {};
thExtras = callPackage ../development/libraries/haskell/th-extras {};