2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub }:
|
2015-05-01 01:14:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mbpfan";
|
2023-04-29 15:54:25 +00:00
|
|
|
version = "2.4.0";
|
2015-05-01 01:14:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dgraziotin";
|
|
|
|
repo = "mbpfan";
|
|
|
|
rev = "v${version}";
|
2023-04-29 15:54:25 +00:00
|
|
|
sha256 = "sha256-F9IWUcILOuLn5K4zRSU5jn+1Wk1xy0CONSI6JTXU2pA=";
|
2015-05-01 01:14:16 +00:00
|
|
|
};
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin $out/etc
|
|
|
|
cp bin/mbpfan $out/bin
|
|
|
|
cp mbpfan.conf $out/etc
|
|
|
|
'';
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Daemon that uses input from coretemp module and sets the fan speed using the applesmc module";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "mbpfan";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dgraziotin/mbpfan";
|
2015-05-01 01:14:16 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2023-09-29 18:19:55 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-05-01 01:14:16 +00:00
|
|
|
};
|
|
|
|
}
|