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