1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/distros/foxy/create-bringup/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

25 lines
927 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, create-description, create-driver, joy, joy-teleop, launch-xml }:
buildRosPackage {
pname = "ros-foxy-create-bringup";
version = "3.0.0-r1";
src = fetchurl {
url = "https://github.com/AutonomyLab/create_autonomy-release/archive/release/foxy/create_bringup/3.0.0-1.tar.gz";
name = "3.0.0-1.tar.gz";
sha256 = "8bc46b135da2f2ad0b96eba3d8f0c67c48dcc63191dcf97486529b2eccef652e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ create-description create-driver joy joy-teleop launch-xml ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Launch and configuration files for common accessories when working with Create/Roomba platforms.'';
license = with lib.licenses; [ bsdOriginal ];
};
}