mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
697 B
Nix
24 lines
697 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rosdoc-lite }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-jackal-tutorials";
|
|
version = "0.7.6-r1";
|
|
|
|
src = fetchurl {
|
|
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";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ rosdoc-lite ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Jackal's tutorials.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|