1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/actionlib-lisp/default.nix

26 lines
890 B
Nix
Raw Normal View History

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";
version = "0.2.12-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
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";
sha256 = "3002af2921ba296af1c5e75037094a24ae484f5cddae30abc5e6ff681669b280";
2019-03-21 00:14:59 -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.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}