2019-08-03 13:30:09 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-08-03 13:30:09 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rosdoc-lite }:
|
2019-08-03 13:30:09 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-jackal-tutorials";
|
2021-07-23 13:01:27 +00:00
|
|
|
version = "0.7.6-r1";
|
2019-08-03 13:30:09 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-23 13:01:27 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/jackal-release/archive/release/melodic/jackal_tutorials/0.7.6-1.tar.gz";
|
|
|
|
name = "0.7.6-1.tar.gz";
|
|
|
|
sha256 = "f3b43616ea52bf0b0e8bd0c1ac11269b06f6e7779f356143bfaf5acdad5514ad";
|
2019-08-03 13:30:09 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-08-03 13:30:09 -04:00
|
|
|
buildInputs = [ rosdoc-lite ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Jackal's tutorials.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|