Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 23 lines 681 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake, validatePkgConfig }: 2 3stdenv.mkDerivation rec { 4 pname = "console-bridge"; 5 version = "1.0.2"; 6 7 src = fetchFromGitHub { 8 owner = "ros"; 9 repo = "console_bridge"; 10 rev = version; 11 sha256 = "sha256-M3GocT0hodw3Sc2NHcFDiPVZ1XN7BqIUuYLW8OaXMqM="; 12 }; 13 14 nativeBuildInputs = [ cmake validatePkgConfig ]; 15 16 meta = with lib; { 17 description = "ROS-independent package for logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages"; 18 homepage = "https://github.com/ros/console_bridge"; 19 license = licenses.bsd3; 20 maintainers = with maintainers; [ lopsided98 ]; 21 platforms = platforms.all; 22 }; 23}