1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/derived-object-msgs/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, geometry-msgs, rosidl-default-runtime, std-msgs, shape-msgs, ament-lint-common, ament-cmake, rosidl-default-generators, builtin-interfaces, radar-msgs }:
buildRosPackage {
pname = "ros-dashing-derived-object-msgs";
version = "3.0.0-r2";
src = fetchurl {
url = "https://github.com/astuff/astuff_sensor_msgs-release/archive/release/dashing/derived_object_msgs/3.0.0-2.tar.gz";
name = "3.0.0-2.tar.gz";
sha256 = "712f19c204053eb543648508d1b827f93746346c1be10ed97945ad179ddb0ccb";
};
buildType = "ament_cmake";
buildInputs = [ geometry-msgs std-msgs shape-msgs builtin-interfaces radar-msgs ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ geometry-msgs rosidl-default-runtime std-msgs shape-msgs builtin-interfaces radar-msgs ];
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
meta = {
description = ''Abstracted Messages from Perception Modalities'';
license = with lib.licenses; [ mit ];
};
}