mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1,009 B
Nix
26 lines
1,009 B
Nix
|
|
# Copyright 2021 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-dashing-delphi-srr-msgs";
|
|
version = "3.0.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/astuff/astuff_sensor_msgs-release/archive/release/dashing/delphi_srr_msgs/3.0.1-1.tar.gz";
|
|
name = "3.0.1-1.tar.gz";
|
|
sha256 = "c6a4e3bd289113b51cc73fea0dc661f374eaf7dd8b7cce7de309844d0ba44165";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ 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 SRR'';
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|