Merge pull request #3611 from ederoyd46/haskell-protobuf
Added haskell hex and protobuf packages
This commit is contained in:
commit
48ab9c742f
|
@ -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;
|
||||
};
|
||||
})
|
|
@ -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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in New Issue