nix-ros-overlay/distros/foxy/derived-object-msgs/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
1.1 KiB
Nix

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