mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1.3 KiB
Nix
26 lines
1.3 KiB
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, moveit-commander, pilz-industrial-motion-testutils, pilz-msgs, pilz-trajectory-generation, prbt-moveit-config, prbt-pg70-support, pythonPackages, roslint, rospy, rostest, rosunit, tf, tf-conversions }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-pilz-robot-programming";
|
|
version = "0.4.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/PilzDE/pilz_industrial_motion-release/archive/release/melodic/pilz_robot_programming/0.4.10-1.tar.gz";
|
|
name = "0.4.10-1.tar.gz";
|
|
sha256 = "8e62a064d692627092b97d2d2c6ccb735468197d97a881df6542b6a2e75ce8a5";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ roslint ];
|
|
checkInputs = [ pilz-industrial-motion-testutils prbt-moveit-config prbt-pg70-support pythonPackages.coverage pythonPackages.docopt pythonPackages.mock rostest rosunit ];
|
|
propagatedBuildInputs = [ moveit-commander pilz-msgs pilz-trajectory-generation pythonPackages.psutil rospy tf tf-conversions ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''An Easy to use API to execute standard industrial robot commands like Ptp, Lin, Circ and Sequence using Moveit.'';
|
|
license = with lib.licenses; [ lgpl2 ];
|
|
};
|
|
}
|