forked from mirrors/nixpkgs
haskell-bytes: new expression
This commit is contained in:
parent
fc91b87dd3
commit
e18b59540c
19
pkgs/development/libraries/haskell/bytes/default.nix
Normal file
19
pkgs/development/libraries/haskell/bytes/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue