f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
27 lines
668 B
Nix
27 lines
668 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cpulimit-${version}";
|
|
version = "2.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/limitcpu/${name}.tar.gz";
|
|
sha256 = "1w1l3r9ini78s8idxlzmgljpfgl1n4y4qhp3q2s8y6wq4bfx41lp";
|
|
};
|
|
|
|
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;
|
|
license = licenses.gpl2;
|
|
maintainers = [maintainers.rycee];
|
|
};
|
|
}
|