mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-16 12:38:39 +03:00
23 lines
680 B
Nix
23 lines
680 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, turtle-tf2, turtle-tf }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-geometry-tutorials";
|
||
|
version = "0.2.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/geometry_tutorials-release/archive/release/melodic/geometry_tutorials/0.2.2-0.tar.gz;
|
||
|
sha256 = "681b5bd03623bc5832921eeb3d314a4f8d9dfbf05f7f48fb48adf327bfc4e2ea";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ turtle-tf2 turtle-tf ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Metapackage of geometry tutorials ROS.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|