cyclonedds-cxx: init at v0.10.4

This commit is contained in:
Linbreux 2023-10-31 09:29:50 +01:00
parent f2568e4132
commit edbe783b17

View File

@ -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 ];
};
}