mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
813 B
Nix
23 lines
813 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, std-msgs, grid-map-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-cost-map-msgs";
|
|
version = "0.3.3";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/stonier/cost_map-release/archive/release/kinetic/cost_map_msgs/0.3.3-0.tar.gz;
|
|
sha256 = "129597da5dc34c612b14815d8b6ec56f405b2f1e04762248e0c1e9558db302a6";
|
|
};
|
|
|
|
buildInputs = [ std-msgs grid-map-msgs message-generation ];
|
|
propagatedBuildInputs = [ std-msgs grid-map-msgs message-runtime ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Definition of cost map messages (related to the grid map message type).'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|