mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
22 lines
653 B
Nix
22 lines
653 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, autoconf, git, catkin, rsync, libtool, zlib }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-grpc";
|
|
version = "0.0.10";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/CogRobRelease/catkin_grpc-release/archive/release/kinetic/grpc/0.0.10-0.tar.gz;
|
|
sha256 = "0cf8a41e16f5b0df5e6a18710cb3e189747ba48c8ce849e5601b987d682ffc4f";
|
|
};
|
|
|
|
buildInputs = [ zlib autoconf git rsync libtool ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Catkinized gRPC Package'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|