2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2020-12-05 01:46:43 +00:00
|
|
|
, IOKit
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "osx-cpu-temp";
|
|
|
|
version = "unstable-2020-12-04";
|
|
|
|
|
|
|
|
src = fetchFromGitHub rec {
|
|
|
|
name = "osx-cpu-temp-source";
|
|
|
|
owner = "lavoiesl";
|
|
|
|
repo = pname;
|
|
|
|
rev = "6ec951be449badcb7fb84676bbc2c521e600e844";
|
|
|
|
sha256 = "1nlibgr55bpln6jbdf8vqcp0fj9zv9343vflb7s9w0yh33fsbg9d";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ IOKit ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp osx-cpu-temp $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-12-05 01:46:43 +00:00
|
|
|
description = "Outputs current CPU temperature for OSX.";
|
|
|
|
homepage = "https://github.com/lavoiesl/osx-cpu-temp";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ virusdave ];
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|