nix-ros-overlay/distros/foxy/pmb2-description/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

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 ];
};
}