2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cpp-common, roscpp-traits, catkin, rostime, roscpp-serialization, genpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-message-runtime";
|
|
|
|
version = "0.4.12";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ros-gbp/message_runtime-release/archive/release/melodic/message_runtime/0.4.12-0.tar.gz";
|
|
|
|
name = "0.4.12-0.tar.gz";
|
2019-03-21 00:14:59 -04:00
|
|
|
sha256 = "70669611054c91c2d65ae94d5e2474198970929338cbb76411cb560902b1c800";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-05-05 02:02:52 -04:00
|
|
|
propagatedBuildInputs = [ cpp-common roscpp-traits rostime roscpp-serialization genpy ];
|
2019-03-21 00:14:59 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Package modeling the run-time dependencies for language bindings of messages.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|