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

28 lines
683 B
Nix
Raw Normal View History

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