mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +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-melodic-grpc";
|
|
version = "0.0.10";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/CogRobRelease/catkin_grpc-release/archive/release/melodic/grpc/0.0.10-0.tar.gz;
|
|
sha256 = "c68b25e98a58f726e6d9a86a1a16c943c468e8f1d426781f9086cd31c525e7b2";
|
|
};
|
|
|
|
buildInputs = [ zlib autoconf git rsync libtool ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Catkinized gRPC Package'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|