mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2021 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-melodic-interval-intersection";
|
|
version = "0.10.14";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/calibration-release/archive/release/melodic/interval_intersection/0.10.14-0.tar.gz";
|
|
name = "0.10.14-0.tar.gz";
|
|
sha256 = "4466aa2fd48b25d0fa963f756b1ed3c5bb4bcba29d9dc1fc6d392d2dfe4685a5";
|
|
};
|
|
|
|
buildType = "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 ];
|
|
};
|
|
}
|