mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
876 B
Nix
23 lines
876 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, roscpp, std-msgs, variant-topic-tools, variant-msgs, geometry-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-variant-topic-test";
|
|
version = "0.1.5";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/anybotics/variant-release/archive/release/kinetic/variant_topic_test/0.1.5-0.tar.gz;
|
|
sha256 = "6ae04151a3f0016de0091e9b86fe6d42fd5373e6ae071997ad87b4788d50ca2b";
|
|
};
|
|
|
|
buildInputs = [ geometry-msgs std-msgs variant-topic-tools variant-msgs roscpp ];
|
|
propagatedBuildInputs = [ geometry-msgs std-msgs variant-topic-tools variant-msgs roscpp ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Variant topic tools testing suites.'';
|
|
#license = lib.licenses.GNU Lesser General Public License (LGPL);
|
|
};
|
|
}
|