cyclonedds-cxx: init at v0.10.4
This commit is contained in:
parent
f2568e4132
commit
edbe783b17
31
pkgs/by-name/cy/cyclonedds-cxx/package.nix
Normal file
31
pkgs/by-name/cy/cyclonedds-cxx/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user