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

24 lines
866 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cpp-common, genpy, roscpp-serialization, roscpp-traits, rostime }:
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";
sha256 = "70669611054c91c2d65ae94d5e2474198970929338cbb76411cb560902b1c800";
};
buildType = "catkin";
propagatedBuildInputs = [ cpp-common genpy roscpp-serialization roscpp-traits rostime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Package modeling the run-time dependencies for language bindings of messages.'';
license = with lib.licenses; [ bsdOriginal ];
};
}