2023-10-31 09:29:50 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, cyclonedds
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cyclonedds-cxx";
|
2024-06-30 02:43:41 +02:00
|
|
|
version = "0.10.5";
|
2023-10-31 09:29:50 +01:00
|
|
|
|
|
|
|
outputs = ["out" "dev"];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eclipse-cyclonedds";
|
|
|
|
repo = "cyclonedds-cxx";
|
|
|
|
rev = version;
|
2024-06-30 02:43:41 +02:00
|
|
|
hash = "sha256-whFVEQec/Ca+dr6R7z9mMrNg315z3oIWchVT+vQ36So=";
|
2023-10-31 09:29:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|