1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/melodic/marti-data-structures/default.nix

22 lines
598 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin }:
buildRosPackage {
pname = "ros-melodic-marti-data-structures";
version = "2.8.0";
src = fetchurl {
url = https://github.com/swri-robotics-gbp/marti_common-release/archive/release/melodic/marti_data_structures/2.8.0-0.tar.gz;
sha256 = "cab974488d36c22553cd9669dd3b1bd9de726fcc26d07131557d022f68f8713f";
};
nativeBuildInputs = [ catkin ];
meta = {
description = ''marti_data_structures'';
#license = lib.licenses.BSD;
};
}