mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
26 lines
881 B
Nix
26 lines
881 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, turtle-actionlib, turtlesim, actionlib, catkin, rospy }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-turtlesim-dash-tutorial";
|
||
|
version = "1.0.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/banerjs-ros-release/turtlesim_dash_tutorial-release/archive/release/melodic/turtlesim_dash_tutorial/1.0.0-2.tar.gz";
|
||
|
name = "1.0.0-2.tar.gz";
|
||
|
sha256 = "60883c74f5ef621c347210e58ab60991c86a138305e0abf18d9f1f40f8fedb3c";
|
||
|
};
|
||
|
|
||
|
buildType = "catkin";
|
||
|
buildInputs = [ turtle-actionlib rospy turtlesim actionlib ];
|
||
|
propagatedBuildInputs = [ turtle-actionlib rospy turtlesim actionlib ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The turtlesim_dash_tutorial package'';
|
||
|
license = with lib.licenses; [ mit ];
|
||
|
};
|
||
|
}
|