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

cyclonedds-cxx: init at v0.10.4
This commit is contained in:
Peder Bergebakken Sundt
2024-06-29 17:17:40 +02:00
committed by GitHub
2 changed files with 37 additions and 0 deletions
+6
View File
@@ -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";
@@ -0,0 +1,31 @@
{ 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 ];
};
}