nixpkgs/pkgs/development/libraries/console-bridge/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
683 B
Nix
Raw Normal View History

2019-04-06 05:40:47 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, validatePkgConfig }:
stdenv.mkDerivation rec {
pname = "console-bridge";
2022-03-12 05:05:50 +00:00
version = "1.0.2";
2019-04-06 05:40:47 +00:00
src = fetchFromGitHub {
owner = "ros";
repo = "console_bridge";
rev = version;
2022-03-12 05:05:50 +00:00
sha256 = "sha256-M3GocT0hodw3Sc2NHcFDiPVZ1XN7BqIUuYLW8OaXMqM=";
2019-04-06 05:40:47 +00:00
};
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;
};
}