mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
e9385023d7
Bump binary version dependency of rank1dynamic, distributed-static, network-transport-* to 0.7.2.1.
21 lines
686 B
Nix
21 lines
686 B
Nix
{ cabal, binary, dataAccessor, deepseq, distributedStatic, hashable
|
|
, mtl, networkTransport, random, rank1dynamic, stm, syb, time
|
|
, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "distributed-process";
|
|
version = "0.5.0";
|
|
sha256 = "16lfmkhc6jk2n46w39vf0q1ql426h5jrjgdi6cyjgwy1d5kaqcny";
|
|
buildDepends = [
|
|
binary dataAccessor deepseq distributedStatic hashable mtl
|
|
networkTransport random rank1dynamic stm syb time transformers
|
|
];
|
|
meta = {
|
|
homepage = "http://haskell-distributed.github.com/";
|
|
description = "Cloud Haskell: Erlang-style concurrency in Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|