1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/cl-utils/default.nix

25 lines
692 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, sbcl }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-cl-utils";
version = "0.2.13-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/roslisp_common-release/archive/release/melodic/cl_utils/0.2.13-1.tar.gz";
name = "0.2.13-1.tar.gz";
sha256 = "ea2af3623291b7e4e5b9a3f1b267cb13f27e474bebfe33d2da138992233500b6";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ sbcl ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Common Lisp utility libraries'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}