Add string-conversions haskell package

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2014-02-05 09:07:45 -05:00
parent 6fe07cb304
commit da16a4b631
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal, text, utf8String }:
cabal.mkDerivation (self: {
pname = "string-conversions";
version = "0.3.0.2";
sha256 = "0jcm0vv0ll74zfc7s2l8qpqpbfnkv7ir9d1kg68m6b0f9sq0dgng";
buildDepends = [ text utf8String ];
meta = {
description = "Simplifies dealing with different types for strings";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2146,6 +2146,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
stringCombinators = callPackage ../development/libraries/haskell/string-combinators {};
stringConversions = callPackage ../development/libraries/haskell/string-conversions {};
stringprep = callPackage ../development/libraries/haskell/stringprep {};
stringQq = callPackage ../development/libraries/haskell/string-qq {};