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/kinetic/tblib/default.nix
2019-04-06 20:59:50 -04:00

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;
};
}