1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/rosconsole/default.nix
2019-04-06 20:59:50 -04:00

23 lines
770 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, cpp-common, apr, rosbuild, catkin, rostime, rosunit, log4cxx }:
buildRosPackage {
pname = "ros-kinetic-rosconsole";
version = "1.12.14";
src = fetchurl {
url = https://github.com/ros-gbp/ros_comm-release/archive/release/kinetic/rosconsole/1.12.14-0.tar.gz;
sha256 = "ae6159a3efce8bdcb74ee15faaf489abb69d99cc16180d21caa9ff0bc518b18c";
};
buildInputs = [ boost cpp-common apr rostime rosunit log4cxx ];
propagatedBuildInputs = [ cpp-common apr rosbuild rostime log4cxx ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''ROS console output library.'';
#license = lib.licenses.BSD;
};
}