2015-03-28 10:10:39 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cpulimit-${version}";
|
2017-03-28 15:41:58 +00:00
|
|
|
version = "2.5";
|
2015-03-28 10:10:39 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/limitcpu/${name}.tar.gz";
|
2017-03-28 15:41:58 +00:00
|
|
|
sha256 = "1w1l3r9ini78s8idxlzmgljpfgl1n4y4qhp3q2s8y6wq4bfx41lp";
|
2015-03-28 10:10:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildFlags = with stdenv;
|
|
|
|
if isDarwin then "osx"
|
|
|
|
else if isFreeBSD then "freebsd"
|
|
|
|
else "cpulimit";
|
|
|
|
|
|
|
|
installFlags = "PREFIX=$(out)";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://limitcpu.sourceforge.net/;
|
2015-03-28 10:10:39 +00:00
|
|
|
description = "A tool to throttle the CPU usage of programs";
|
2015-08-04 08:40:44 +00:00
|
|
|
platforms = with platforms; linux ++ freebsd;
|
2015-03-28 10:10:39 +00:00
|
|
|
license = licenses.gpl2;
|
2016-02-10 13:59:36 +00:00
|
|
|
maintainers = [maintainers.rycee];
|
2015-03-28 10:10:39 +00:00
|
|
|
};
|
|
|
|
}
|