mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
23 lines
701 B
Nix
23 lines
701 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-audio-common-msgs";
|
||
|
version = "0.3.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/audio_common-release/archive/release/melodic/audio_common_msgs/0.3.3-0.tar.gz;
|
||
|
sha256 = "119fea466f5d72ff6fab2bb92fed76cf3665441eb4b6012ff202817c5c42fe02";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ message-runtime ];
|
||
|
nativeBuildInputs = [ catkin message-generation ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Messages for transmitting audio via ROS'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|