xeus-zmq: init at 1.1.0
This commit is contained in:
parent
9a476c8ea4
commit
b2d514047e
2 changed files with 47 additions and 0 deletions
45
pkgs/development/libraries/xeus-zmq/default.nix
Normal file
45
pkgs/development/libraries/xeus-zmq/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue