mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib-lisp, catkin, cl-tf, cl-tf2, cl-transforms, cl-transforms-stamped, cl-urdf, cl-utils, roslisp-utilities }:
|
|
buildRosPackage {
|
|
pname = "ros-noetic-roslisp-common";
|
|
version = "0.2.15-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/roslisp_common-release/archive/release/noetic/roslisp_common/0.2.15-1.tar.gz";
|
|
name = "0.2.15-1.tar.gz";
|
|
sha256 = "6cb78227af332341ef0f5a672b3f980fbf5052218cf62e8fccb785a308f59cfa";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ catkin ];
|
|
propagatedBuildInputs = [ actionlib-lisp cl-tf cl-tf2 cl-transforms cl-transforms-stamped cl-urdf cl-utils roslisp-utilities ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = "Common libraries to control ROS based robots. This stack contains
|
|
an implementation of actionlib (client and server) in Common Lisp,
|
|
a transformation library and an implementation of tf in Common
|
|
Lisp.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|