about summary refs log tree commit diff
path: root/pkgs/by-name/cy/cyclonedds-cxx/package.nix
blob: d2f6b14848ce3000185b575f9a443791fdb0771d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 ];
    };
}