icemon: init at v3.3
This commit is contained in:
parent
842ad7258a
commit
e50baf22df
24
pkgs/applications/networking/icemon/default.nix
Normal file
24
pkgs/applications/networking/icemon/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, fetchFromGitHub, mkDerivation, qtbase, cmake, extra-cmake-modules, icecream, libcap_ng, lzo, zstd, libarchive, wrapQtAppsHook }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "icemon";
|
||||
version = "3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "icecc";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "09jnipr67dhawbxfn69yh7mmjrkylgiqmd0gmc2limd3z15d7pgc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
|
||||
buildInputs = [ icecream qtbase libcap_ng lzo zstd libarchive ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Icecream GUI Monitor";
|
||||
inherit (src.meta) homepage;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ emantor ];
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
}
|
@ -4536,6 +4536,8 @@ in
|
||||
|
||||
icecast = callPackage ../servers/icecast { };
|
||||
|
||||
icemon = libsForQt5.callPackage ../applications/networking/icemon { };
|
||||
|
||||
icepeak = haskell.lib.justStaticExecutables haskellPackages.icepeak;
|
||||
|
||||
iceshelf = callPackage ../tools/backup/iceshelf { };
|
||||
|
Loading…
Reference in New Issue
Block a user