1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/kinetic/odometry-publisher-tutorial/default.nix
2019-04-06 20:59:50 -04:00

23 lines
738 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, nav-msgs, catkin, tf, roscpp }:
buildRosPackage {
pname = "ros-kinetic-odometry-publisher-tutorial";
version = "0.2.3";
src = fetchurl {
url = https://github.com/ros-gbp/navigation_tutorials-release/archive/release/kinetic/odometry_publisher_tutorial/0.2.3-0.tar.gz;
sha256 = "70cea6a4d984eee00bbf0c0b2099a0f7634596d9b414ab2c9c2a2046c3a97028";
};
buildInputs = [ nav-msgs tf roscpp ];
propagatedBuildInputs = [ nav-msgs tf roscpp ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The odometry_publisher_tutorial package'';
#license = lib.licenses.BSD;
};
}