mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 18:23:44 +00:00
console-bridge: init at 1.0.0
This commit is contained in:
parent
22a81aa5fc
commit
061f2b3511
23
pkgs/development/libraries/console-bridge/default.nix
Normal file
23
pkgs/development/libraries/console-bridge/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user