mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
23 lines
733 B
Nix
23 lines
733 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, pluginlib, rosconsole, sensor-msgs, catkin, roscpp, nodelet }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-laser-proc";
|
||
|
version = "0.1.5";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/laser_proc-release/archive/release/melodic/laser_proc/0.1.5-0.tar.gz;
|
||
|
sha256 = "bd596ebcfc3016970ba1c6abcd0d8c550e9b96a19ec6ab23ec8f5f3bc0f3d7c5";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ rosconsole pluginlib sensor-msgs nodelet roscpp ];
|
||
|
nativeBuildInputs = [ catkin rosconsole pluginlib sensor-msgs nodelet roscpp ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''laser_proc'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|