Merge pull request #23134 from ljli/earlyoom-init

earlyoom: init at 0.11
This commit is contained in:
Michael Raskin 2017-03-18 17:22:57 +01:00 committed by GitHub
commit 309f10b00c
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "earlyoom-${version}";
version = "0.11";
src = fetchFromGitHub {
owner = "rfjakob";
repo = "earlyoom";
rev = "08b7ed8e72feed2eec2e558ba2cfacbf6d469594";
sha256 = "1k3xslb70fzk80wlka32l0k2v45qn1xgwyjkjiz85gv6v4mv92vl";
};
installPhase = ''
mkdir -p $out/bin
cp earlyoom $out/bin
'';
meta = {
description = "Early OOM Daemon for Linux";
homepage = https://github.com/rfjakob/earlyoom;
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ ];
};
}

View File

@ -867,6 +867,8 @@ with pkgs;
dynamic-colors = callPackage ../tools/misc/dynamic-colors { };
earlyoom = callPackage ../os-specific/linux/earlyoom { };
ecasound = callPackage ../applications/audio/ecasound { };
edac-utils = callPackage ../os-specific/linux/edac-utils { };