nixpkgs/pkgs/development/libraries/xeus-zmq/default.nix
2023-07-24 21:42:30 -03:00

46 lines
785 B
Nix

{ 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;
};
}