mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
741 B
Nix
24 lines
741 B
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ouxt-lint-common }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-ouxt-common";
|
|
version = "0.0.8-r3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ouxt_common-release/archive/release/humble/ouxt_common/0.0.8-3.tar.gz";
|
|
name = "0.0.8-3.tar.gz";
|
|
sha256 = "497c4f174b05f677ff1b7b9ea355e8855942666c1b6beafe31bae7a814284d22";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ ouxt-lint-common ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''common settings for OUXT Polaris ROS2 packages'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|