zmq: initial package
This commit is contained in:
parent
6de23f5416
commit
b9c7f8dba1
2 changed files with 30 additions and 0 deletions
29
pkgs/servers/zmq/default.nix
Normal file
29
pkgs/servers/zmq/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -7827,6 +7827,7 @@ let
|
||||||
|
|
||||||
zabbix20 = callPackage ../servers/monitoring/zabbix/2.0.nix { };
|
zabbix20 = callPackage ../servers/monitoring/zabbix/2.0.nix { };
|
||||||
zabbix22 = callPackage ../servers/monitoring/zabbix/2.2.nix { };
|
zabbix22 = callPackage ../servers/monitoring/zabbix/2.2.nix { };
|
||||||
|
zmq = callPackage ../servers/zmq/default.nix { };
|
||||||
|
|
||||||
|
|
||||||
### OS-SPECIFIC
|
### OS-SPECIFIC
|
||||||
|
|
Loading…
Reference in a new issue