2021-01-11 08:54:33 +01:00
|
|
|
{lib, stdenv, fetchurl}:
|
2015-03-28 11:10:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "cpulimit";
|
2021-05-12 10:20:15 +02:00
|
|
|
version = "2.7";
|
2015-03-28 11:10:39 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/limitcpu/${pname}-${version}.tar.gz";
|
2021-05-12 10:20:15 +02:00
|
|
|
sha256 = "sha256-HeBApPikDf6MegJf6YB1ZzRo+8P8zMvCMbx0AvYuxKA=";
|
2015-03-28 11:10:39 +01:00
|
|
|
};
|
|
|
|
|
2019-10-28 10:17:49 +01:00
|
|
|
buildFlags = with stdenv; [ (
|
2015-03-28 11:10:39 +01:00
|
|
|
if isDarwin then "osx"
|
|
|
|
else if isFreeBSD then "freebsd"
|
2019-10-28 10:17:49 +01:00
|
|
|
else "cpulimit"
|
|
|
|
) ];
|
2015-03-28 11:10:39 +01:00
|
|
|
|
2019-10-28 10:17:49 +01:00
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2015-03-28 11:10:39 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://limitcpu.sourceforge.net/";
|
2015-03-28 11:10:39 +01:00
|
|
|
description = "A tool to throttle the CPU usage of programs";
|
2015-08-04 10:40:44 +02:00
|
|
|
platforms = with platforms; linux ++ freebsd;
|
2015-03-28 11:10:39 +01:00
|
|
|
license = licenses.gpl2;
|
2016-02-10 14:59:36 +01:00
|
|
|
maintainers = [maintainers.rycee];
|
2015-03-28 11:10:39 +01:00
|
|
|
};
|
|
|
|
}
|