1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 00:20:36 +03:00
nix-ros-overlay/distros/melodic/message-runtime/default.nix

25 lines
866 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cpp-common, genpy, roscpp-serialization, roscpp-traits, rostime }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-message-runtime";
version = "0.4.12";
src = fetchurl {
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";
};
buildType = "catkin";
propagatedBuildInputs = [ cpp-common genpy roscpp-serialization roscpp-traits rostime ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''Package modeling the run-time dependencies for language bindings of messages.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}