loadwatch: init at 1.1
This commit is contained in:
parent
47529594e4
commit
943625a62b
19
pkgs/tools/system/loadwatch/default.nix
Normal file
19
pkgs/tools/system/loadwatch/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl, ... }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "loadwatch-1.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://debian/pool/main/l/loadwatch/loadwatch_1.0+1.1alpha1.orig.tar.gz";
|
||||
sha256 = "1abjl3cy4sa4ivdm7wghv9rq93h8kix4wjbiv7pb906rdqs4881a";
|
||||
};
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
install loadwatch lw-ctl $out/bin
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
description = "Run a program using only idle cycles";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ woffs ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -1338,6 +1338,8 @@ with pkgs;
|
||||
|
||||
languagetool = callPackage ../tools/text/languagetool { };
|
||||
|
||||
loadwatch = callPackage ../tools/system/loadwatch { };
|
||||
|
||||
loccount = callPackage ../development/tools/misc/loccount { };
|
||||
|
||||
long-shebang = callPackage ../misc/long-shebang {};
|
||||
|
Loading…
Reference in New Issue
Block a user