depot/third_party/nixpkgs/pkgs/development/libraries/xeus-zmq/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

45 lines
785 B
Nix

{ lib
, clangStdenv
, fetchFromGitHub
, cmake
, cppzmq
, libuuid
, nlohmann_json
, openssl
, xeus
, xtl
, zeromq
}:
clangStdenv.mkDerivation rec {
pname = "xeus-zmq";
version = "1.3.0";
src = fetchFromGitHub {
owner = "jupyter-xeus";
repo = "xeus-zmq";
rev = "${version}";
hash = "sha256-CrFb0LDb6akCfFnwMSa4H3D3A8KJx9Kiejw6VeV3IDs=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
cppzmq
libuuid
openssl
xeus
xtl
zeromq
];
propagatedBuildInputs = [ nlohmann_json ];
meta = {
description = "ZeroMQ-based middleware for xeus";
homepage = "https://github.com/jupyter-xeus/xeus-zmq";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ thomasjm ];
platforms = lib.platforms.all;
};
}