Commit edbe783b authored by Linbreux's avatar Linbreux
Browse files

cyclonedds-cxx: init at v0.10.4

parent f2568e41
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, cmake
, cyclonedds
}:

stdenv.mkDerivation rec {
  pname = "cyclonedds-cxx";
  version = "0.10.4";

  outputs = ["out" "dev"];

  src = fetchFromGitHub {
    owner = "eclipse-cyclonedds";
    repo = "cyclonedds-cxx";
    rev = version;
    hash = "sha256-/Bb4lhDeJFCZpsf+EfKSJpX5Xv5mFms5miw36be1goQ=";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = [ cyclonedds ];

  meta = with lib; {
      description = "C++ binding for Eclipse Cyclone DDS";
      homepage = "https://cyclonedds.io/";
      license = with licenses; [ epl20 asl20 ];
      maintainers = with maintainers; [ linbreux ];
    };
}