console-bridge: init at 1.0.0

This commit is contained in:
Ben Wolsieffer 2019-04-06 01:40:47 -04:00
parent 22a81aa5fc
commit 061f2b3511
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub, cmake, validatePkgConfig }:
stdenv.mkDerivation rec {
pname = "console-bridge";
version = "1.0.0";
src = fetchFromGitHub {
owner = "ros";
repo = "console_bridge";
rev = version;
sha256 = "14f5i2qgp5clwkm8jjlvv7kxvwx52a607mnbc63x61kx9h6ymxlk";
};
nativeBuildInputs = [ cmake validatePkgConfig ];
meta = with lib; {
description = "A ROS-independent package for logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages";
homepage = "https://github.com/ros/console_bridge";
license = licenses.bsd3;
maintainers = with maintainers; [ lopsided98 ];
platforms = platforms.all;
};
}

View File

@ -2750,6 +2750,8 @@ in
conda = callPackage ../tools/package-management/conda { };
console-bridge = callPackage ../development/libraries/console-bridge { };
convmv = callPackage ../tools/misc/convmv { };
convoy = callPackage ../tools/filesystems/convoy { };