mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00

regenerate ros-kinetic, Fri Mar 22 14:03:51 2019 regenerate ros-kinetic, Sat Mar 23 00:05:23 2019 regenerate ros-kinetic, Sat Mar 23 00:38:46 2019 regenerate ros-kinetic, Sat Mar 23 00:58:04 2019 regenerate ros-melodic, Sat Mar 23 01:14:22 2019 regenerate ros-kinetic, Tue Apr 2 01:07:09 2019 regenerate ros-kinetic, Tue Apr 2 01:22:33 2019 regenerate ros-kinetic, Tue Apr 2 20:47:59 2019 regenerate ros-kinetic, Tue Apr 2 22:55:05 2019 regenerate ros-melodic, Tue Apr 2 22:59:35 2019 regenerate ros-kinetic, Tue Apr 2 23:08:34 2019 regenerate ros-melodic, Tue Apr 2 23:11:56 2019 regenerate ros-melodic, Wed Apr 3 12:38:28 2019 regenerate ros-kinetic, Wed Apr 3 16:06:39 2019 regenerate ros-kinetic, Wed Apr 3 18:31:01 2019
35 lines
1.4 KiB
Nix
35 lines
1.4 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cmake }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-rc-genicam-api";
|
|
version = "2.1.0";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/roboception-gbp/rc_genicam_api-release/archive/release/kinetic/rc_genicam_api/2.1.0-0.tar.gz;
|
|
sha256 = "d911032f59ec3d97699b2d13ec140a456ece806dde5bf5921330ea72edf21cee";
|
|
};
|
|
|
|
propagatedBuildInputs = [ catkin ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = ''GenICam/GigE Vision Convenience Layer.
|
|
|
|
This package combines the Roboception convenience layer for images with the
|
|
GenICam reference implementation and a GigE Vision transport layer. It is a
|
|
self contained package that permits configuration and image streaming of
|
|
GenICam / GigE Vision 2.0 compatible cameras like the Roboception rc_visard.
|
|
|
|
This package also provides some tools that can be called from the command line
|
|
for discovering cameras, changing their configuration and streaming images.
|
|
Although the tools are meant to be useful when working in a shell or in a
|
|
script, their main purpose is to serve as example on how to use the API for
|
|
reading and setting parameters, streaming and synchronizing images.
|
|
|
|
See LICENSE.md for licensing terms of the different parts.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|