mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
865 B
Nix
25 lines
865 B
Nix
![]() |
|
||
|
# Copyright 2020 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, diagnostic-msgs, pr2-msgs, roscpp, rospy, std-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-pr2-computer-monitor";
|
||
|
version = "1.6.31-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/pr2-gbp/pr2_robot-release/archive/release/melodic/pr2_computer_monitor/1.6.31-1.tar.gz";
|
||
|
name = "1.6.31-1.tar.gz";
|
||
|
sha256 = "d20f5a31e78189fbb94c72d1dac29332944a7e157a59401530cbce29aba6ff8b";
|
||
|
};
|
||
|
|
||
|
buildType = "catkin";
|
||
|
propagatedBuildInputs = [ diagnostic-msgs pr2-msgs roscpp rospy std-msgs ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Monitors the computer's processor and hard drives of the PR2 and publishes data to diagnostics.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|