mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
add haskell-protocol-buffers
This commit is contained in:
parent
e2e923644f
commit
98334e1d0a
|
@ -0,0 +1,14 @@
|
|||
{ cabal, binary, filepath, mtl, syb, utf8String }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "protocol-buffers";
|
||||
version = "2.0.14";
|
||||
sha256 = "1wihnpvc7kjq345a6v702s42gmrqd9cjm50safc7kigyvhr5vm1i";
|
||||
buildDepends = [ binary filepath mtl syb utf8String ];
|
||||
meta = {
|
||||
homepage = "http://code.haskell.org/protocol-buffers/";
|
||||
description = "Parse Google Protocol Buffer specifications";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1813,6 +1813,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
fgl = self.fgl_5_4_2_4;
|
||||
};
|
||||
|
||||
protocolBuffers = callPackage ../development/libraries/haskell/protocol-buffers {};
|
||||
|
||||
PSQueue = callPackage ../development/libraries/haskell/PSQueue {};
|
||||
|
||||
publicsuffixlist = callPackage ../development/libraries/haskell/publicsuffixlist {};
|
||||
|
|
Loading…
Reference in a new issue