mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
757 B
Nix
24 lines
757 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, nodelet, roscpp, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-nodelet-tutorial-math";
|
|
version = "0.1.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/common_tutorials-release/archive/release/melodic/nodelet_tutorial_math/0.1.11-0.tar.gz";
|
|
name = "0.1.11-0.tar.gz";
|
|
sha256 = "399778f44a140cd9fd5b0ed41b8c88408803791a64b0c3d006bca4b174b1669f";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ nodelet roscpp std-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Package for Nodelet tutorial.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|