mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
29 lines
1.3 KiB
Nix
29 lines
1.3 KiB
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-cmake-python, ament-lint-auto, ament-lint-common, joint-state-publisher-gui, launch, launch-pal, launch-ros, launch-testing-ament-cmake, pmb2-controller-configuration, urdf-test, xacro }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-pmb2-description";
|
|
version = "4.0.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/pal-gbp/pmb2_robot-gbp/archive/release/foxy/pmb2_description/4.0.4-1.tar.gz";
|
|
name = "4.0.4-1.tar.gz";
|
|
sha256 = "2bc1f8479f255e37d44a47a89847e4f98f8a14e42f6e12bebccd5c2e771851b0";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-auto ament-cmake-python ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common launch-testing-ament-cmake urdf-test ];
|
|
propagatedBuildInputs = [ joint-state-publisher-gui launch launch-pal launch-ros pmb2-controller-configuration xacro ];
|
|
nativeBuildInputs = [ ament-cmake-auto ament-cmake-python ];
|
|
|
|
meta = {
|
|
description = ''Mechanical, kinematic, visual, etc. description of the PMB2 robot.
|
|
The files in this package are parsed and used by
|
|
a variety of other components. Most users will not interact directly
|
|
with this package.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|