nixpkgs/pkgs/os-specific/linux/earlyoom/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
927 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pandoc, installShellFiles, withManpage ? false, nixosTests }:
2017-02-24 05:31:23 +00:00
stdenv.mkDerivation rec {
2020-04-12 09:09:57 +00:00
pname = "earlyoom";
2022-03-06 05:36:40 +00:00
version = "1.7";
2017-02-24 05:31:23 +00:00
src = fetchFromGitHub {
owner = "rfjakob";
repo = "earlyoom";
2020-04-12 09:09:57 +00:00
rev = "v${version}";
2022-03-06 05:36:40 +00:00
sha256 = "sha256-8YcT1TTlAet7F1U9Ginda4IApNqkudegOXqm8rnRGfc=";
2017-02-24 05:31:23 +00:00
};
2021-01-15 14:45:37 +00:00
nativeBuildInputs = lib.optionals withManpage [ pandoc installShellFiles ];
2020-04-12 09:09:57 +00:00
patches = [ ./fix-dbus-path.patch ];
2020-04-12 09:09:57 +00:00
makeFlags = [ "VERSION=${version}" ];
2017-02-24 05:31:23 +00:00
installPhase = ''
install -D earlyoom $out/bin/earlyoom
2021-01-15 14:45:37 +00:00
'' + lib.optionalString withManpage ''
2020-04-12 09:09:57 +00:00
installManPage earlyoom.1
2017-02-24 05:31:23 +00:00
'';
passthru.tests = {
inherit (nixosTests) earlyoom;
};
meta = with lib; {
2017-02-24 05:31:23 +00:00
description = "Early OOM Daemon for Linux";
2020-04-12 09:09:57 +00:00
homepage = "https://github.com/rfjakob/earlyoom";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [];
2017-02-24 05:31:23 +00:00
};
}