- Update ports for Alloy, Grafana, Loki, Prometheus, Promtail, Tempo, and Uptime Kuma to new ranges - Add Arrtrix content management commands and subscriptions - Implement Radarr and Sonarr client logic for movie and series management - Add matrix commands for download and subscription management - Add subscription repository with database schema and logic - Update Arrtrix config and example config for content section - Update help text and command processor to include new commands - Update vendor hash for Arrtrix package
33 lines
625 B
Nix
33 lines
625 B
Nix
{
|
|
buildGoModule,
|
|
lib,
|
|
olm,
|
|
versionCheckHook,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "arrtrix";
|
|
version = "0.1.0";
|
|
tag = "v0.1.0";
|
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
vendorHash = "sha256-UYRit+v41djnCx+GFdEl/8WQsp2DzF4ywT9iv3m1pSc=";
|
|
subPackages = ["cmd/arrtrix"];
|
|
|
|
buildInputs = [olm];
|
|
|
|
ldflags = [
|
|
"-X main.Tag=${tag}"
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
nativeInstallCheckInputs = [versionCheckHook];
|
|
|
|
meta = {
|
|
description = "*arr-stack Matrix bridge";
|
|
homepage = "https://github.com/chris-kruining/sneeuwvlok";
|
|
license = lib.licenses.mit;
|
|
maintainers = [];
|
|
mainProgram = "arrtrix";
|
|
};
|
|
}
|