depot/pkgs/by-name/cy/cyclonedds-cxx/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
642 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, cyclonedds
}:
stdenv.mkDerivation rec {
pname = "cyclonedds-cxx";
version = "0.10.5";
outputs = ["out" "dev"];
src = fetchFromGitHub {
owner = "eclipse-cyclonedds";
repo = "cyclonedds-cxx";
rev = version;
hash = "sha256-whFVEQec/Ca+dr6R7z9mMrNg315z3oIWchVT+vQ36So=";
};
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 ];
};
}