mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 09:52:22 +03:00
22 lines
616 B
Nix
22 lines
616 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, sbcl }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-cl-utils";
|
|
version = "0.2.10";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/roslisp_common-release/archive/release/melodic/cl_utils/0.2.10-0.tar.gz;
|
|
sha256 = "e77a28e37781eac7f3e75193f0c6adb099a860976fd96677baa28b11bfc21e44";
|
|
};
|
|
|
|
propagatedBuildInputs = [ sbcl ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Common Lisp utility libraries'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|