lol
0
fork

Configure Feed

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

at 23.11-beta 24 lines 727 B view raw
1{ lib, fetchFromGitHub, mkDerivation, qtbase, cmake, extra-cmake-modules, icecream, libcap_ng, lzo, zstd, libarchive, wrapQtAppsHook }: 2 3mkDerivation rec { 4 pname = "icemon"; 5 version = "3.3"; 6 7 src = fetchFromGitHub { 8 owner = "icecc"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "09jnipr67dhawbxfn69yh7mmjrkylgiqmd0gmc2limd3z15d7pgc"; 12 }; 13 14 nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ]; 15 buildInputs = [ icecream qtbase libcap_ng lzo zstd libarchive ]; 16 17 meta = with lib; { 18 description = "Icecream GUI Monitor"; 19 inherit (src.meta) homepage; 20 license = licenses.gpl2; 21 maintainers = with maintainers; [ emantor ]; 22 platforms = with platforms; linux ++ darwin; 23 }; 24}