mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 20:43:28 +00:00
d36daf07d6
Co-authored-by: R. RyanTM <ryantm-bot@ryantm.com>
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
pandoc,
|
|
stdenv,
|
|
nixosTests,
|
|
# Boolean flags
|
|
withManpage ? true,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "earlyoom";
|
|
version = "1.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rfjakob";
|
|
repo = "earlyoom";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-jgNoYOGor2i3ngDuU3It238n5ky+AppzlRKdkwXb2AI=";
|
|
};
|
|
|
|
outputs = [ "out" ] ++ lib.optionals withManpage [ "man" ];
|
|
|
|
patches = [ ./0000-fix-dbus-path.patch ];
|
|
|
|
nativeBuildInputs = lib.optionals withManpage [
|
|
installShellFiles
|
|
pandoc
|
|
];
|
|
|
|
makeFlags = [
|
|
"VERSION=${finalAttrs.version}"
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D earlyoom $out/bin/earlyoom
|
|
'' + lib.optionalString withManpage ''
|
|
installManPage earlyoom.1
|
|
'' + ''
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) earlyoom;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/rfjakob/earlyoom";
|
|
description = "Early OOM Daemon for Linux";
|
|
longDescription = ''
|
|
earlyoom checks the amount of available memory and free swap up to 10
|
|
times a second (less often if there is a lot of free memory). By default
|
|
if both are below 10%, it will kill the largest process (highest
|
|
oom_score). The percentage value is configurable via command line
|
|
arguments.
|
|
'';
|
|
license = lib.licenses.mit;
|
|
mainProgram = "earlyoom";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|