mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
890 B
Nix
25 lines
890 B
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, cl-utils, message-runtime, roslisp }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-actionlib-lisp";
|
|
version = "0.2.13-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/roslisp_common-release/archive/release/melodic/actionlib_lisp/0.2.13-1.tar.gz";
|
|
name = "0.2.13-1.tar.gz";
|
|
sha256 = "2a3d66692e70cd32ac8761c52744dcdfef0faa17f0ee8e8c1f49b985fc6e5f85";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ actionlib-msgs cl-utils message-runtime roslisp ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''actionlib_lisp is a native implementation of the famous actionlib
|
|
in Common Lisp. It provides a client and a simple server.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|