mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-20 14:18:39 +03:00
23 lines
670 B
Nix
23 lines
670 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-json-msgs";
|
||
|
version = "0.0.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/locusrobotics/json_transport-release/archive/release/melodic/json_msgs/0.0.3-0.tar.gz;
|
||
|
sha256 = "bf40e01a92a86cd7c5f7c56e26b160dd8425c7bdcaee3d407ceac8f6dfc115f8";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ message-runtime ];
|
||
|
nativeBuildInputs = [ catkin message-generation ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''JSON ROS message'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|