xeus-zmq: init at 1.1.0

This commit is contained in:
Tom McLaughlin 2023-07-21 23:13:11 -07:00 committed by Anderson Torres
parent 9a476c8ea4
commit b2d514047e
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ lib
, clangStdenv
, fetchFromGitHub
, cmake
, cppzmq
, libuuid
, nlohmann_json
, openssl
, xeus
, xtl
, zeromq
}:
clangStdenv.mkDerivation rec {
pname = "xeus-zmq";
version = "1.1.0";
src = fetchFromGitHub {
owner = "jupyter-xeus";
repo = "xeus-zmq";
rev = "${version}";
hash = "sha256-j23NPgqwjQ7x4QriCb+N7CtBWhph+pCmBC0AULEDL1U=";
};
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;
};
}

View file

@ -20182,6 +20182,8 @@ with pkgs;
xeus = callPackage ../development/libraries/xeus { };
xeus-zmq = callPackage ../development/libraries/xeus-zmq { };
xmlindent = callPackage ../development/web/xmlindent { };
xpwn = callPackage ../development/mobile/xpwn { };