nixpkgs/pkgs/development/libraries/zeromq/4.x.nix

23 lines
591 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libuuid, pkgconfig, libsodium }:
2014-05-01 04:52:21 -07:00
stdenv.mkDerivation rec {
2016-02-13 10:25:31 -08:00
name = "zeromq-4.1.4";
2014-05-01 04:52:21 -07:00
src = fetchurl {
url = "http://download.zeromq.org/${name}.tar.gz";
2016-02-13 10:25:31 -08:00
sha256 = "0y73dxgf4kaysmkvrkxqq9qk5znklxyghh749jw4qbjwwbyl97z9";
2014-05-01 04:52:21 -07:00
};
2015-09-17 19:23:08 -07:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libuuid libsodium ];
2014-05-01 04:52:21 -07:00
2015-03-11 18:48:23 -07:00
meta = with stdenv.lib; {
2014-05-01 04:52:21 -07:00
branch = "4";
homepage = "http://www.zeromq.org";
description = "The Intelligent Transport Layer";
2015-03-11 18:48:23 -07:00
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
2014-05-01 04:52:21 -07:00
};
}