prometheus-fastly-exporter: refactor

- Update source repo, it was migrated to fastly
- Hook up the NixOS test
- Add meta.mainProgram
This commit is contained in:
Martin Weinelt 2024-02-09 02:25:47 +01:00
parent a43d9cd69a
commit d679c69737
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,22 +1,31 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib
, buildGoModule
, fetchFromGitHub
, nixosTests
}:
buildGoModule rec {
pname = "fastly-exporter";
version = "7.6.1";
src = fetchFromGitHub {
owner = "peterbourgon";
repo = pname;
owner = "fastly";
repo = "fastly-exporter";
rev = "v${version}";
sha256 = "sha256-JUbjWAJ70iq0RCr6U2thbtZ3nmCic9wGtSf2ArRy4uA=";
hash = "sha256-JUbjWAJ70iq0RCr6U2thbtZ3nmCic9wGtSf2ArRy4uA=";
};
vendorHash = "sha256-lEaMhJL/sKNOXx0W+QHMG4QUUE6Pc4AqulhgyCMQQNY=";
passthru.tests = {
inherit (nixosTests.prometheus-exporters) fastly;
};
meta = with lib; {
description = "Prometheus exporter for the Fastly Real-time Analytics API";
homepage = "https://github.com/peterbourgon/fastly-exporter";
homepage = "https://github.com/fastly/fastly-exporter";
license = licenses.asl20;
maintainers = teams.deshaw.members;
mainProgram = "fastly-exporter";
};
}