mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
Move everything in rosPackages to its own directory.
This commit is contained in:
parent
fe0a4494ef
commit
444edcec26
5725 changed files with 3 additions and 3 deletions
25
distros/melodic/robot-activity-tutorials/default.nix
Normal file
25
distros/melodic/robot-activity-tutorials/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
# Copyright 2020 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, catkin, robot-activity, roscpp, roslint, std-srvs }:
|
||||
buildRosPackage {
|
||||
pname = "ros-melodic-robot-activity-tutorials";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/snt-robotics/robot_activity-release/archive/release/melodic/robot_activity_tutorials/0.1.1-0.tar.gz";
|
||||
name = "0.1.1-0.tar.gz";
|
||||
sha256 = "8d4cb4eb59c9bbcb053aef3cd75652525a4f7276d424cc3600a4d0e443807fd2";
|
||||
};
|
||||
|
||||
buildType = "catkin";
|
||||
buildInputs = [ roslint ];
|
||||
propagatedBuildInputs = [ robot-activity roscpp std-srvs ];
|
||||
nativeBuildInputs = [ catkin ];
|
||||
|
||||
meta = {
|
||||
description = ''The robot_activity_tutorials package'';
|
||||
license = with lib.licenses; [ bsdOriginal ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue