mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
677 B
Nix
24 lines
677 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rospy, tf2 }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-tf2-py";
|
|
version = "0.6.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/geometry2-release/archive/release/melodic/tf2_py/0.6.5-0.tar.gz";
|
|
name = "0.6.5-0.tar.gz";
|
|
sha256 = "24fc32a89eb1f6714d2f05c138c5d85741aabe819fc18475e63564aa0e2c388b";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ rospy tf2 ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The tf2_py package'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|