loadwatch: init at 1.1

This commit is contained in:
Frank Doepper 2018-06-08 12:45:15 +02:00
parent 47529594e4
commit 943625a62b
2 changed files with 21 additions and 0 deletions

View 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;
};
}

View File

@ -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 {};