1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/tts-interfaces/default.nix

25 lines
837 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-dashing-tts-interfaces";
version = "2.0.1-r1";
src = fetchurl {
url = "https://github.com/aws-gbp/tts-release/archive/release/dashing/tts_interfaces/2.0.1-1.tar.gz";
name = "2.0.1-1.tar.gz";
sha256 = "ea2c475744c13bacdbcb227bec310950d235c971ba87c5330b64ac20cf49e1fa";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ action-msgs rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''Contains message and service definitions used by tts.'';
license = with lib.licenses; [ asl20 ];
};
}