1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/foxy/pmb2-simulation/default.nix

26 lines
956 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, pmb2-2dnav-gazebo, pmb2-gazebo }:
buildRosPackage {
pname = "ros-foxy-pmb2-simulation";
version = "3.0.1-r1";
src = fetchurl {
url = "https://github.com/pal-gbp/pmb2_simulation-gbp/archive/release/foxy/pmb2_simulation/3.0.1-1.tar.gz";
name = "3.0.1-1.tar.gz";
sha256 = "7aefc5cc3823c9708f06e7d7de0eefd54879665620bdb55f5c7f5e7f75a8eec4";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ pmb2-2dnav-gazebo pmb2-gazebo ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''PMB2-specific simulation components. These include plugins
and launch scripts necessary for running PMB2 in simulation.'';
license = with lib.licenses; [ bsdOriginal ];
};
}