45 lines
785 B
Nix
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.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jupyter-xeus";
|
|
repo = "xeus-zmq";
|
|
rev = "${version}";
|
|
hash = "sha256-xavomnqQh5aMrBEyeuwoxrTjsw8wRof3+qxKOsrXqiQ=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|