mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
24 lines
794 B
Nix
24 lines
794 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, cv-bridge, rospy, std-msgs, roscpp, rosunit, eigen }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-tuw-geometry";
|
|
version = "0.0.3";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/tuw-robotics/tuw_geometry-release/archive/release/melodic/tuw_geometry/0.0.3-0.tar.gz;
|
|
sha256 = "96df80626ab8ecd101acb1f972c815be0d105e9e5539e73d691ea3b2ef5d3e84";
|
|
};
|
|
|
|
buildInputs = [ boost rospy std-msgs cv-bridge roscpp eigen ];
|
|
checkInputs = [ rosunit ];
|
|
propagatedBuildInputs = [ std-msgs roscpp cv-bridge rospy ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The tuw_geometry package'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|