2020-04-17 14:28:31 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-04-17 14:28:31 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-05-29 00:40:01 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, libpng, libusb1 }:
|
2020-04-17 14:28:31 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-rc-genicam-api";
|
2020-10-30 13:06:42 +00:00
|
|
|
version = "2.4.4-r1";
|
2020-04-17 14:28:31 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-30 13:06:42 +00:00
|
|
|
url = "https://github.com/roboception-gbp/rc_genicam_api-release/archive/release/dashing/rc_genicam_api/2.4.4-1.tar.gz";
|
|
|
|
name = "2.4.4-1.tar.gz";
|
|
|
|
sha256 = "a5297c3f71fc1360a6507a93413996118f7c0ca4503cfd24f51572a25c1e2ca7";
|
2020-04-17 14:28:31 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2021-05-29 00:40:01 +00:00
|
|
|
propagatedBuildInputs = [ libpng libusb1 ];
|
2020-04-17 14:28:31 -04:00
|
|
|
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 = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|