scrutiny,scrutiny-collector: 0.8.1 -> 0.8.6 (#488036)

This commit is contained in:
Sandro
2026-03-27 03:24:30 +00:00
committed by GitHub
3 changed files with 21 additions and 9 deletions
+6
View File
@@ -26162,6 +26162,12 @@
githubId = 43136984;
name = "Sven Ziegler";
};
svistoi = {
email = "svistoi@zohomailcloud.ca";
github = "svistoi";
githubId = 47987757;
name = "svistoi";
};
svrana = {
email = "shaw@vranix.com";
github = "svrana";
@@ -8,7 +8,7 @@
nix-update-script,
}:
let
version = "0.8.1";
version = "0.8.6";
in
buildGoModule rec {
inherit version;
@@ -18,12 +18,12 @@ buildGoModule rec {
owner = "AnalogJ";
repo = "scrutiny";
tag = "v${version}";
hash = "sha256-WoU5rdsIEhZQ+kPoXcestrGXC76rFPvhxa0msXjFsNg=";
hash = "sha256-0NgAdgtlsAetXfFqJdYpvzEXL4Ibh4yzAjOaOFoMvrs=";
};
subPackages = "collector/cmd/collector-metrics";
vendorHash = "sha256-SiQw6pq0Fyy8Ia39S/Vgp9Mlfog2drtVn43g+GXiQuI=";
vendorHash = "sha256-4qjKGjCvB0ggf6Cda7LfMeqbbBbhGcxB2ZfymUhajq8=";
nativeBuildInputs = [ makeWrapper ];
@@ -49,7 +49,10 @@ buildGoModule rec {
description = "Hard disk metrics collector for Scrutiny";
homepage = "https://github.com/AnalogJ/scrutiny";
license = lib.licenses.mit;
maintainers = [ ];
maintainers = with lib.maintainers; [
samasaur
svistoi
];
mainProgram = "scrutiny-collector-metrics";
};
}
+8 -5
View File
@@ -8,13 +8,13 @@
}:
let
pname = "scrutiny";
version = "0.8.1";
version = "0.8.6";
src = fetchFromGitHub {
owner = "AnalogJ";
repo = "scrutiny";
tag = "v${version}";
hash = "sha256-WoU5rdsIEhZQ+kPoXcestrGXC76rFPvhxa0msXjFsNg=";
hash = "sha256-0NgAdgtlsAetXfFqJdYpvzEXL4Ibh4yzAjOaOFoMvrs=";
};
frontend = buildNpmPackage {
@@ -22,7 +22,7 @@ let
pname = "${pname}-webapp";
src = "${src}/webapp/frontend";
npmDepsHash = "sha256-M8P41LPg7oJ/C9abDuNM5Mn+OO0zK56CKi2BwLxv8oQ=";
npmDepsHash = "sha256-EgIM3iu/dGQhzanWjjBFmLHU3EOy2riScXCDSwAvAZc=";
buildPhase = ''
runHook preBuild
@@ -46,7 +46,7 @@ buildGoModule rec {
subPackages = "webapp/backend/cmd/scrutiny";
vendorHash = "sha256-SiQw6pq0Fyy8Ia39S/Vgp9Mlfog2drtVn43g+GXiQuI=";
vendorHash = "sha256-4qjKGjCvB0ggf6Cda7LfMeqbbBbhGcxB2ZfymUhajq8=";
env.CGO_ENABLED = 0;
@@ -67,7 +67,10 @@ buildGoModule rec {
homepage = "https://github.com/AnalogJ/scrutiny";
changelog = "https://github.com/AnalogJ/scrutiny/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
maintainers = with lib.maintainers; [
samasaur
svistoi
];
mainProgram = "scrutiny";
platforms = lib.platforms.linux;
};