mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-17 23:50:21 +03:00
23 lines
793 B
Nix
23 lines
793 B
Nix
![]() |
|
||
|
# 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-kinetic-message-runtime";
|
||
|
version = "0.4.12";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/message_runtime-release/archive/release/kinetic/message_runtime/0.4.12-0.tar.gz;
|
||
|
sha256 = "9e29a95de191b68b2a6734663ff4eff585f7c8ef70cbc8e3b1e04c9f05f00d32";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ genpy cpp-common roscpp-serialization roscpp-traits rostime ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Package modeling the run-time dependencies for language bindings of messages.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|