depot/pkgs/os-specific/linux/freefall/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

34 lines
1.1 KiB
Nix

{ lib, stdenv, kernel }:
stdenv.mkDerivation {
inherit (kernel) version src;
pname = "freefall";
postPatch = ''
cd tools/laptop/freefall
# Default time-out is a little low, probably because the AC/lid status
# functions were never implemented. Because no-one still uses HDDs, right?
substituteInPlace freefall.c --replace "alarm(2)" "alarm(5)"
'';
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
inherit (kernel.meta) homepage license;
description = "Free-fall protection for spinning HP/Dell laptop hard drives";
mainProgram = "freefall";
longDescription = ''
Provides a shock protection facility in modern laptops with spinning hard
drives, by stopping all input/output operations on the internal hard drive
and parking its heads on the ramp when critical situations are anticipated.
Requires support for the ATA/ATAPI-7 IDLE IMMEDIATE command with unload
feature, which should cause the drive to switch to idle mode and unload the
disk heads, and an accelerometer device. It has no effect on SSD devices!
'';
platforms = platforms.linux;
};
}