2016-08-31 11:25:28 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, gnugrep, kmod }:
|
2015-05-01 01:14:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mbpfan-${version}";
|
2017-08-10 13:57:46 +00:00
|
|
|
version = "2.0.1";
|
2015-05-01 01:14:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dgraziotin";
|
|
|
|
repo = "mbpfan";
|
|
|
|
rev = "v${version}";
|
2017-08-10 13:57:46 +00:00
|
|
|
sha256 = "1iri1py9ym0zz7fcacbf0d9y3i3ay77jmajckchagamkfha16zyp";
|
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";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/dgraziotin/mbpfan;
|
2015-05-01 01:14:16 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
|
|
};
|
|
|
|
}
|