2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, rsync, catkin }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-abseil-cpp";
|
|
|
|
version = "0.2.3-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/Eurecat/abseil_cpp-release/archive/release/melodic/abseil_cpp/0.2.3-1.tar.gz;
|
|
|
|
sha256 = "016b0cb70355a46ec06fa709a09117aaed9f8c7351a216634cefdfc642456b91";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ rsync ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The abseil_cpp package'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ "Apache-1.0" ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|