mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-14 03:28:39 +03:00
26 lines
857 B
Nix
26 lines
857 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, cmake, gtest, ros-industrial-cmake-boilerplate }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-boost-plugin-loader";
|
|
version = "0.2.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/tesseract-robotics-release/boost_plugin_loader-release/archive/release/humble/boost_plugin_loader/0.2.2-1.tar.gz";
|
|
name = "0.2.2-1.tar.gz";
|
|
sha256 = "bfed44986961e35027b68a7cccde875e86032ce16568c93be0bed059ff290a45";
|
|
};
|
|
|
|
buildType = "cmake";
|
|
buildInputs = [ cmake ros-industrial-cmake-boilerplate ];
|
|
checkInputs = [ gtest ];
|
|
propagatedBuildInputs = [ boost ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = "Boost plugin loader implementation";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|