mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
737 B
Nix
23 lines
737 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, cpp-common, roscpp-traits, catkin, roscpp-serialization, rostime }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-roscpp-core";
|
||
|
version = "0.6.11";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/roscpp_core-release/archive/release/kinetic/roscpp_core/0.6.11-0.tar.gz;
|
||
|
sha256 = "ebbb8eadae39bdc0654c686dc832ab292e8a71121f35cf753332de43c1c5d942";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ roscpp-traits rostime cpp-common roscpp-serialization ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Underlying data libraries for roscpp messages.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|