mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
912 B
Nix
25 lines
912 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-geometry-msgs";
|
|
version = "0.7.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/dashing/geometry_msgs/0.7.0-1.tar.gz";
|
|
name = "0.7.0-1.tar.gz";
|
|
sha256 = "b0ca096be9cc17931c61fe21daccc4d8f9ed03cc7ad32dd7046fed39fcccea85";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-lint-common ];
|
|
propagatedBuildInputs = [ rosidl-default-runtime std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
meta = {
|
|
description = ''A package containing some geometry related message definitions.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|