mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
22 lines
639 B
Nix
22 lines
639 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin-pip, catkin }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-tblib";
|
|
version = "1.2.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/asmodehn/tblib-rosrelease/archive/release/kinetic/tblib/1.2.0-2.tar.gz;
|
|
sha256 = "0e67c67bba4e7339bda61ef3f8ada290a0374da8b8e46670215bc41080f179c1";
|
|
};
|
|
|
|
buildInputs = [ catkin-pip ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Traceback fiddling library. Allows you to pickle tracebacks.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|