summary refs log tree commit diff
path: root/pkgs/development/libraries/zeromq/4.x.nix
blob: 08eb6317fcb98c78668b8c7912f21d2da4c8aa15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, libuuid}:

stdenv.mkDerivation rec {
  name = "zeromq-4.0.4";

  src = fetchurl {
    url = "http://download.zeromq.org/${name}.tar.gz";
    sha256 = "16fkax2f6h2h4wm7jrv95m6vwffd4vb1wrm1smyy4csgx531vxqy";
  };

  buildInputs = [ libuuid ];

  meta = {
    branch = "4";
    homepage = "http://www.zeromq.org";
    description = "The Intelligent Transport Layer";
  };
}