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

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

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

  buildInputs = [ libuuid ];

  doCheck = false; # fails all the tests (ctest)

  meta = with stdenv.lib; {
    branch = "3";
    homepage = http://www.zeromq.org;
    description = "The Intelligent Transport Layer";
    license = licenses.gpl3;
    platforms = platforms.all;
  };
}