haskell-bytes: new expression

This commit is contained in:
John Wiegley 2014-06-08 04:18:25 -05:00
parent fc91b87dd3
commit e18b59540c
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ cabal, binary, cereal, doctest, filepath, mtl, text, time
, transformers, transformersCompat, void
}:
cabal.mkDerivation (self: {
pname = "bytes";
version = "0.14.0.2";
sha256 = "1bdradf5lq1kgiri64zd8cvcw2fxwbwv0apznl8vxyqlx406v3rn";
buildDepends = [
binary cereal mtl text time transformers transformersCompat void
];
testDepends = [ doctest filepath ];
meta = {
homepage = "http://github.com/analytics/bytes";
description = "Sharing code for serialization between binary and cereal";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -301,6 +301,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
byteorder = callPackage ../development/libraries/haskell/byteorder {};
bytes = callPackage ../development/libraries/haskell/bytes {};
bytestringNums = callPackage ../development/libraries/haskell/bytestring-nums {};
bytestringLexing = callPackage ../development/libraries/haskell/bytestring-lexing {};