1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-26 16:45:32 +03:00
nix-ros-overlay/dashing/fastrtps/default.nix
2019-11-07 17:46:51 -05:00

25 lines
772 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, asio, openssl, fastcdr, tinyxml-2, cmake }:
buildRosPackage {
pname = "ros-dashing-fastrtps";
version = "1.8.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/fastrtps-release/archive/release/dashing/fastrtps/1.8.2-1.tar.gz";
name = "1.8.2-1.tar.gz";
sha256 = "59077766b9b801862280e898f06dad701d4b54f0fbf88ac387b725e08acc63df";
};
buildType = "cmake";
buildInputs = [ fastcdr tinyxml-2 asio ];
propagatedBuildInputs = [ openssl fastcdr tinyxml-2 ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Implementation of RTPS standard.'';
license = with lib.licenses; [ asl20 ];
};
}