1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/json-msgs/default.nix

24 lines
691 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, message-generation, catkin, message-runtime }:
buildRosPackage {
pname = "ros-kinetic-json-msgs";
version = "0.0.1";
src = fetchurl {
url = https://github.com/locusrobotics/json_transport-release/archive/release/kinetic/json_msgs/0.0.1-0.tar.gz;
sha256 = "5d9f8770eb2fafa195087500bee956ea5c0b3f5c120a9b8ad54bebbf4fe8d298";
};
buildInputs = [ message-generation ];
propagatedBuildInputs = [ message-runtime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''JSON ROS message'';
#license = lib.licenses.BSD;
};
}