Add package 'cpulimit'.

This commit is contained in:
Robert Helgesson
2015-03-28 11:56:51 +01:00
parent b6fb62fd22
commit a1689c951c
2 changed files with 28 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "cpulimit-${version}";
version = "2.2";
src = fetchurl {
url = "mirror://sourceforge/limitcpu/${name}.tar.gz";
sha256 = "1r19rk2cbyfmgwh3l445fxkn1bmkzyi69dg5dbx4b4mbqjjxlr1z";
};
buildFlags = with stdenv;
if isDarwin then "osx"
else if isFreeBSD then "freebsd"
else "cpulimit";
installFlags = "PREFIX=$(out)";
meta = with stdenv.lib; {
homepage = "http://limitcpu.sourceforge.net/";
description = "A tool to throttle the CPU usage of programs";
platforms = with platforms; [linux freebsd darwin];
license = licenses.gpl2;
maintainer = [maintainers.rycee];
};
}