1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/abseil-cpp/default.nix

25 lines
675 B
Nix
Raw Normal View History

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