lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 24 lines 581 B view raw
1{ lib, stdenv, fetchgit }: 2 3stdenv.mkDerivation { 4 pname = "loadwatch"; 5 version = "1.1-1-g6d2544c"; 6 7 src = fetchgit { 8 url = "git://woffs.de/git/fd/loadwatch.git"; 9 sha256 = "1bhw5ywvhyb6snidsnllfpdi1migy73wg2gchhsfbcpm8aaz9c9b"; 10 rev = "6d2544c0caaa8a64bbafc3f851e06b8056c30e6e"; 11 }; 12 13 installPhase = '' 14 mkdir -p $out/bin 15 install loadwatch lw-ctl $out/bin 16 ''; 17 18 meta = with lib; { 19 description = "Run a program using only idle cycles"; 20 license = licenses.gpl2; 21 maintainers = with maintainers; [ woffs ]; 22 platforms = platforms.all; 23 }; 24}