mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
914 B
Nix
26 lines
914 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rosemacs, roslisp, sbcl, slime-ros, slime-wrapper }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-roslisp-repl";
|
|
version = "0.4.16-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/code-iai-release/ros_emacs_utils-release/archive/release/melodic/roslisp_repl/0.4.16-1.tar.gz";
|
|
name = "0.4.16-1.tar.gz";
|
|
sha256 = "e61ec7c039072709e4635378db091237d9d7eaa4d961557237497e006aa7152b";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ rosemacs roslisp sbcl slime-ros slime-wrapper ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''This package provides a script that launches Emacs with Slime (the
|
|
Superior Lisp Interaction Mode) ready for Lisp development and
|
|
roslisp.'';
|
|
license = with lib.licenses; [ publicDomain ];
|
|
};
|
|
}
|