3
0
Fork 0
forked from mirrors/nixpkgs

zmq: initial package

This commit is contained in:
Gavin Rogers 2014-11-12 23:08:05 +00:00
parent 6de23f5416
commit b9c7f8dba1
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "zeromq";
version = "4.1.0-rc1";
src = fetchurl {
url = "http://download.zeromq.org/${name}-${version}.tar.gz";
sha256 = "e8e6325abe2ede0a9fb3d1abbe425d8a7911f6ac283652ee49b36afbb0164d60";
};
doCheck = true;
meta = {
description = "0MQ is a lightweight messaging kernel";
longDescription = ''
The 0MQ lightweight messaging kernel is a library which extends
the standard socket interfaces with features traditionally provided
by specialised messaging middleware products. 0MQ sockets provide
an abstraction of asynchronous message queues, multiple messaging patterns,
message filtering (subscriptions), seamless access to multiple transport protocols
and more.
'';
homepage = http://zeromq.org/;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.gavin ];
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -7827,6 +7827,7 @@ let
zabbix20 = callPackage ../servers/monitoring/zabbix/2.0.nix { };
zabbix22 = callPackage ../servers/monitoring/zabbix/2.2.nix { };
zmq = callPackage ../servers/zmq/default.nix { };
### OS-SPECIFIC