haskell-byteorder: added version 1.0.3

svn path=/nixpkgs/trunk/; revision=31084
This commit is contained in:
Peter Simons 2011-12-26 15:35:33 +00:00
parent 70b696e83e
commit e4f3dcda83
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "byteorder";
version = "1.0.3";
sha256 = "056jb47r4pkimi6z2z49prnsmjnhnijk57zm0divl1k55igi5way";
meta = {
homepage = "http://community.haskell.org/~aslatter/code/byteorder";
description = "Exposes the native endianness or byte ordering of the system";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -481,6 +481,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
bson = callPackage ../development/libraries/haskell/bson {};
byteorder = callPackage ../development/libraries/haskell/byteorder {};
bytestringNums = callPackage ../development/libraries/haskell/bytestring-nums {};
bytestringLexing = callPackage ../development/libraries/haskell/bytestring-lexing {};