Unverified Commit eb1ba314 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

Merge pull request #263036 from Linbreux/add-cyclonedds-cxx

cyclonedds-cxx: init at v0.10.4
parents b75986fd edbe783b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -11457,6 +11457,12 @@
    githubId = 36448130;
    name = "Michael Brantley";
  };
  linbreux = {
    email = "linbreux@gmail.com";
    github = "linbreux";
    githubId = 29354411;
    name = "linbreux";
  };
  linc01n = {
    email = "git@lincoln.hk";
    github = "linc01n";
+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 ];
    };
}