nixpkgs/pkgs/tools/misc/cpulimit/default.nix

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

30 lines
656 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2015-03-28 11:10:39 +01:00
stdenv.mkDerivation rec {
pname = "cpulimit";
version = "0.2";
2015-03-28 11:10:39 +01:00
src = fetchFromGitHub {
owner = "opsengine";
repo = "cpulimit";
rev = "v${version}";
sha256 = "1dz045yhcsw1rdamzpz4bk8mw888in7fyqk1q1b3m1yk4pd1ahkh";
2015-03-28 11:10:39 +01:00
};
patches = [ ./remove-sys-sysctl.h.patch ./get-missing-basename.patch ];
2015-03-28 11:10:39 +01:00
installPhase = ''
mkdir -p $out/bin
cp src/cpulimit $out/bin
'';
2015-03-28 11:10:39 +01:00
meta = with lib; {
homepage = "https://github.com/opsengine/cpulimit";
description = "CPU usage limiter";
platforms = platforms.unix;
2015-03-28 11:10:39 +01:00
license = licenses.gpl2;
maintainers = [ maintainers.jsoo1 ];
2015-03-28 11:10:39 +01:00
};
}