mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
25 lines
695 B
Nix
25 lines
695 B
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mbpfan";
|
|
version = "2.4.0";
|
|
src = fetchFromGitHub {
|
|
owner = "dgraziotin";
|
|
repo = "mbpfan";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-F9IWUcILOuLn5K4zRSU5jn+1Wk1xy0CONSI6JTXU2pA=";
|
|
};
|
|
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";
|
|
mainProgram = "mbpfan";
|
|
homepage = "https://github.com/dgraziotin/mbpfan";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|