Merge pull request #3611 from ederoyd46/haskell-protobuf

Added haskell hex and protobuf packages
This commit is contained in:
Peter Simons 2014-08-15 18:29:01 +02:00
commit 48ab9c742f
3 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,14 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal }:
cabal.mkDerivation (self: {
pname = "hex";
version = "0.1.2";
sha256 = "1v31xiaivrrn0q2jz8919wvkjplv1kxna5ajhsj701fqxm1i5vhj";
meta = {
description = "Convert strings into hexadecimal and back";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -0,0 +1,25 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, cereal, dataBinaryIeee754, deepseq, hex, HUnit, mtl
, QuickCheck, tagged, tasty, tastyHunit, tastyQuickcheck, text
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "protobuf";
version = "0.2.0.3";
sha256 = "0jcrnym0j8w4vjrdmvn88x8ddp8wf809wviy1vkz94p2nyp6l2hw";
buildDepends = [
cereal dataBinaryIeee754 deepseq mtl text unorderedContainers
];
testDepends = [
cereal hex HUnit mtl QuickCheck tagged tasty tastyHunit
tastyQuickcheck text unorderedContainers
];
meta = {
homepage = "https://github.com/alphaHeavy/protobuf";
description = "Google Protocol Buffers via GHC.Generics";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1079,6 +1079,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
heredoc = callPackage ../development/libraries/haskell/heredoc {};
hexpat = callPackage ../development/libraries/haskell/hexpat {};
hex = callPackage ../development/libraries/haskell/hex {};
hgal = callPackage ../development/libraries/haskell/hgal {};
@ -1913,6 +1915,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
prologGraphLib = callPackage ../development/libraries/haskell/prolog-graph-lib {};
prologGraph = callPackage ../development/libraries/haskell/prolog-graph {};
protobuf = callPackage ../development/libraries/haskell/protobuf {};
protocolBuffers = callPackage ../development/libraries/haskell/protocol-buffers {};
protocolBuffersDescriptor = callPackage ../development/libraries/haskell/protocol-buffers-descriptor {};