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

23 lines
591 B
Nix
Raw Normal View History

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