3
0
Fork 0
forked from mirrors/nixpkgs

haskell-byteable: add version 0.1.1

This commit is contained in:
Peter Simons 2013-07-01 11:38:45 +02:00
parent df12e039e3
commit b8a44d7289
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "byteable";
version = "0.1.1";
sha256 = "1qizg0kxxjqnd3cbrjhhidk5pbbciz0pb3z5kzikjjxnnnhk8fr4";
meta = {
homepage = "http://github.com/vincenthz/hs-byteable";
description = "Type class for sequence of bytes";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -627,6 +627,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
boomerang = callPackage ../development/libraries/haskell/boomerang {};
byteable = callPackage ../development/libraries/haskell/byteable {};
bytedump = callPackage ../development/libraries/haskell/bytedump {};
byteorder = callPackage ../development/libraries/haskell/byteorder {};