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

26 lines
1,022 B
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, ros-environment, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-foxy-delphi-mrr-msgs";
version = "4.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/astuff_sensor_msgs-release/archive/release/foxy/delphi_mrr_msgs/4.0.0-1.tar.gz";
name = "4.0.0-1.tar.gz";
sha256 = "ce843a5289a9a94d4f0b297a716a938fb0f1ae0a8d8b4b2e9e4234c47530492e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ros-environment rosidl-default-generators ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Message definitions for the Delphi MRR'';
license = with lib.licenses; [ mit ];
};
}