Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

68 lines
1.4 KiB
Nix

{
lib,
stdenv,
dotnetCorePackages,
dotnet-runtime_8,
buildDotnetModule,
fetchFromGitHub,
libglvnd,
makeDesktopItem,
copyDesktopItems,
}:
buildDotnetModule rec {
pname = "mqttmultimeter";
version = "1.8.2.272";
src = fetchFromGitHub {
owner = "chkr1011";
repo = "mqttMultimeter";
rev = "v" + version;
hash = "sha256-vL9lmIhNLwuk1tmXLKV75xAhktpdNOb0Q4ZdvLur5hw=";
};
sourceRoot = "${src.name}/Source";
projectFile = [ "mqttMultimeter.sln" ];
nugetDeps = ./deps.json;
dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnet-runtime_8;
executables = [ "mqttMultimeter" ];
nativeBuildInputs = [
copyDesktopItems
];
buildInputs = [ (lib.getLib stdenv.cc.cc) ];
postInstall = ''
rm -rf $out/lib/${lib.toLower pname}/runtimes/{*musl*,win*}
'';
runtimeDeps = [
libglvnd
];
desktopItems = [
(makeDesktopItem {
name = meta.mainProgram;
exec = meta.mainProgram;
icon = meta.mainProgram;
desktopName = meta.mainProgram;
genericName = meta.description;
comment = meta.description;
type = "Application";
categories = [ "Network" ];
startupNotify = true;
})
];
meta = with lib; {
mainProgram = builtins.head executables;
description = "MQTT traffic monitor";
license = licenses.free;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}