depot/third_party/nixpkgs/pkgs/development/libraries/zeromq/4.x.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

43 lines
1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, asciidoc
, pkg-config
, libsodium
, enableDrafts ? false
}:
stdenv.mkDerivation rec {
pname = "zeromq";
version = "4.3.5";
src = fetchFromGitHub {
owner = "zeromq";
repo = "libzmq";
rev = "v${version}";
sha256 = "sha256-q2h5y0Asad+fGB9haO4Vg7a1ffO2JSb7czzlhmT3VmI=";
};
nativeBuildInputs = [ cmake asciidoc pkg-config ];
buildInputs = [ libsodium ];
doCheck = false; # fails all the tests (ctest)
cmakeFlags = lib.optional enableDrafts "-DENABLE_DRAFTS=ON";
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace '$'{prefix}/'$'{CMAKE_INSTALL_LIBDIR} '$'{CMAKE_INSTALL_FULL_LIBDIR} \
--replace '$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR}
'';
meta = with lib; {
branch = "4";
homepage = "http://www.zeromq.org";
description = "Intelligent Transport Layer";
license = licenses.mpl20;
platforms = platforms.all;
maintainers = with maintainers; [ fpletz ];
};
}