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/dashing/marti-sensor-msgs/default.nix
2019-12-09 23:36:28 -05:00

24 lines
838 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, geometry-msgs, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-dashing-marti-sensor-msgs";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/marti_messages-release/archive/release/dashing/marti_sensor_msgs/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "7faea5580cdc57fda947eee6cf3151e87c89a9a97e27b789b38e5cb3e94be1a6";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ geometry-msgs rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''marti_sensor_msgs'';
license = with lib.licenses; [ bsdOriginal ];
};
}