2020-05-02 01:00:46 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-05-02 01:00:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-11-25 19:56:04 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, lvr2 }:
|
2020-05-02 01:00:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-hdf5-map-io";
|
2020-11-25 19:56:04 -05:00
|
|
|
version = "1.0.1-r1";
|
2020-05-02 01:00:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-11-25 19:56:04 -05:00
|
|
|
url = "https://github.com/uos-gbp/mesh-tools/archive/release/melodic/hdf5_map_io/1.0.1-1.tar.gz";
|
|
|
|
name = "1.0.1-1.tar.gz";
|
|
|
|
sha256 = "5805cfb79152f8350b95260d2eec609ac0292fe571e89f62cdc656454d84f819";
|
2020-05-02 01:00:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2020-11-25 19:56:04 -05:00
|
|
|
propagatedBuildInputs = [ boost lvr2 ];
|
2020-05-02 01:00:46 +00:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The hdf5_map_io package'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|