4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
34 lines
1.1 KiB
Nix
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";
|
|
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;
|
|
};
|
|
}
|