1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/eloquent/pcl-msgs/default.nix

26 lines
929 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-default-generators, rosidl-default-runtime, sensor-msgs, std-msgs }:
buildRosPackage {
pname = "ros-eloquent-pcl-msgs";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/pcl_msgs-release/archive/release/eloquent/pcl_msgs/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "80e8ec72d50935088286abb77712ba1aede89dd49fd5a420a558570a8564a661";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ rosidl-default-runtime sensor-msgs std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''Package containing PCL (Point Cloud Library)-related ROS messages.'';
license = with lib.licenses; [ bsdOriginal ];
};
}