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

regenerate all distros, Fri Feb 5 13:08:14 2021

This commit is contained in:
Superflore 2021-02-05 13:08:14 +00:00 committed by Ben Wolsieffer
parent c894915970
commit e10fc0e9cc
226 changed files with 1800 additions and 771 deletions

View file

@ -2,19 +2,19 @@
# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake }:
{ lib, buildRosPackage, fetchurl, boost, cmake }:
buildRosPackage {
pname = "ros-melodic-async-comm";
version = "0.2.0-r1";
version = "0.2.1-r2";
src = fetchurl {
url = "https://github.com/dpkoch/async_comm-release/archive/release/melodic/async_comm/0.2.0-1.tar.gz";
name = "0.2.0-1.tar.gz";
sha256 = "657753a9f478d51187d61862ab11deea0eaa38b107bc599084c6a2d49addfb2f";
url = "https://github.com/dpkoch/async_comm-release/archive/release/melodic/async_comm/0.2.1-2.tar.gz";
name = "0.2.1-2.tar.gz";
sha256 = "9cc4a16ea07097a37952f076d5fe82b9cc452f56e75b4bfa7c12786ca1c59926";
};
buildType = "cmake";
propagatedBuildInputs = [ boost catkin ];
propagatedBuildInputs = [ boost ];
nativeBuildInputs = [ cmake ];
meta = {