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/distros/melodic/roslisp/default.nix

25 lines
789 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, rosgraph-msgs, roslang, rospack, sbcl, std-srvs }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-roslisp";
version = "1.9.22";
src = fetchurl {
url = "https://github.com/ros-gbp/roslisp-release/archive/release/melodic/roslisp/1.9.22-0.tar.gz";
name = "1.9.22-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "83844af11c1d8a5baf84efcef5a107629966d66b14973723446cd8803fc9781a";
};
buildType = "catkin";
propagatedBuildInputs = [ rosgraph-msgs roslang rospack sbcl std-srvs ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''Lisp client library for ROS, the Robot Operating System.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}