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

27 lines
670 B
Nix
Raw Normal View History

2015-03-28 10:10:39 +00:00
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "cpulimit-${version}";
2016-09-02 06:06:59 +00:00
version = "2.3";
2015-03-28 10:10:39 +00:00
src = fetchurl {
url = "mirror://sourceforge/limitcpu/${name}.tar.gz";
2016-09-02 06:06:59 +00:00
sha256 = "192r2ghxyn8dm1la65f685nzsbj3dhdrxx3cv3i6cafygs3dyfa0";
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; {
homepage = "http://limitcpu.sourceforge.net/";
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
};
}