Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
823 B
Nix
50 lines
823 B
Nix
{
|
|
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 = "icemon";
|
|
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;
|
|
mainProgram = "icemon";
|
|
};
|
|
}
|