2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, roslisp, message-runtime, cl-utils }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-actionlib-lisp";
|
2019-06-26 22:39:38 -04:00
|
|
|
version = "0.2.12-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ros-gbp/roslisp_common-release/archive/release/melodic/actionlib_lisp/0.2.12-1.tar.gz";
|
|
|
|
name = "0.2.12-1.tar.gz";
|
2019-06-26 22:39:38 -04:00
|
|
|
sha256 = "3002af2921ba296af1c5e75037094a24ae484f5cddae30abc5e6ff681669b280";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
|
|
|
propagatedBuildInputs = [ cl-utils roslisp message-runtime actionlib-msgs ];
|
2019-03-21 00:14:59 -04:00
|
|
|
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.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|