forked from mirrors/nixpkgs
Merge pull request #5120 from jeremyjh/distributed-process-p2p
haskell-distributed-process-p2p add from Hackage
This commit is contained in:
commit
7ae1a17c89
|
@ -0,0 +1,23 @@
|
|||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, binary, distributedProcess, mtl, network, networkTransport
|
||||
, networkTransportTcp
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "distributed-process-p2p";
|
||||
version = "0.1.3.0";
|
||||
sha256 = "00lvi2x1s8r7lwfvsjnvzc9iwdk4ip8svw85p2h3ra4iqbzj70l2";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
binary distributedProcess mtl network networkTransport
|
||||
networkTransportTcp
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://bitbucket.org/dpwiz/distributed-process-p2p/";
|
||||
description = "Peer-to-peer node discovery for Cloud Haskell";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -678,6 +678,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
distributedProcess = callPackage ../development/libraries/haskell/distributed-process {};
|
||||
|
||||
distributedProcessP2p = callPackage ../development/libraries/haskell/distributed-process-p2p {};
|
||||
|
||||
distributedProcessPlatform = callPackage ../development/libraries/haskell/distributed-process-platform {};
|
||||
|
||||
distributive = callPackage ../development/libraries/haskell/distributive {};
|
||||
|
|
Loading…
Reference in a new issue