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/noetic/interval-intersection/default.nix

27 lines
1.1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib, actionlib-msgs, boost, calibration-msgs, catkin, geometry-msgs, rosconsole, roscpp, roscpp-serialization, rostime, std-msgs }:
buildRosPackage {
pname = "ros-noetic-interval-intersection";
version = "0.10.15-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/calibration-release/archive/release/noetic/interval_intersection/0.10.15-1.tar.gz";
name = "0.10.15-1.tar.gz";
sha256 = "4f89e1d18704edfe0222cc81b58b40ed3ea8edfc49c342c14499f6de0fef4387";
};
buildType = "catkin";
buildInputs = [ catkin ];
propagatedBuildInputs = [ actionlib actionlib-msgs boost calibration-msgs geometry-msgs rosconsole roscpp roscpp-serialization rostime std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = "Tools for calculating the intersection of interval messages coming
in on several topics. This package is experimental and unstable.
Expect its APIs to change.";
license = with lib.licenses; [ bsdOriginal ];
};
}