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-transforms/default.nix

25 lines
738 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, cl-utils, sbcl }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-cl-transforms";
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_transforms/0.2.13-1.tar.gz";
name = "0.2.13-1.tar.gz";
sha256 = "2644bf9a6b816b70ca216290676f58e6d0b7d49c9b0d5f182928936f3aca9bd6";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ cl-utils sbcl ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''Homogeneous transform library for Common Lisp.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}