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 12:52:21 +01:00
stdenv.mkDerivation rec {
2015-09-18 03:23:08 +01:00
name = "zeromq-4.1.3";
2014-05-01 12:52:21 +01:00
src = fetchurl {
url = "http://download.zeromq.org/${name}.tar.gz";
2015-09-18 03:23:08 +01:00
sha256 = "04gligbgr0phipjkwc0dyk1vr9306r6s4dbj85z7fxxk1n1ircv1";
2014-05-01 12:52:21 +01:00
};
2015-09-18 03:23:08 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libuuid libsodium ];
2014-05-01 12:52:21 +01:00
2015-03-12 01:48:23 +00:00
meta = with stdenv.lib; {
2014-05-01 12:52:21 +01: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 12:52:21 +01:00
};
}