mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
23 lines
750 B
Nix
23 lines
750 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, cost-map-ros, cost-map-msgs, catkin, cost-map-core, cost-map-visualisations }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-cost-map";
|
||
|
version = "0.3.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/stonier/cost_map-release/archive/release/kinetic/cost_map/0.3.3-0.tar.gz;
|
||
|
sha256 = "b920058823f2256adbcd420f3619b9f4f594d6575c0bd1332781bb38e89ef990";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ cost-map-msgs cost-map-ros cost-map-core cost-map-visualisations ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Meta-package for the universal cost map library.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|