mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #7050 from rycee/cpulimit
Fix platforms attribute for 'cpulimit' expression.
This commit is contained in:
commit
3adef78df6
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
|||
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];
|
||||
platforms = with platforms; linux ++ freebsd ++ darwin;
|
||||
license = licenses.gpl2;
|
||||
maintainer = [maintainers.rycee];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue