mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
28 lines
754 B
Nix
28 lines
754 B
Nix
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "mikrotik-exporter-unstable";
|
|
version = "2021-08-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nshttpd";
|
|
repo = "mikrotik-exporter";
|
|
rev = "4bfa7adfef500ff621a677adfab1f7010af920d1";
|
|
hash = "sha256-xmQTFx2BFBiKxRgfgGSG8h8nb18uviCAORS8VIILFu8=";
|
|
};
|
|
|
|
vendorHash = "sha256-rRIQo+367nHdtgfisBka0Yn6f4P75Mm3Ead4CscnRCw=";
|
|
|
|
doCheck = false;
|
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) mikrotik; };
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Prometheus MikroTik device(s) exporter";
|
|
mainProgram = "mikrotik-exporter";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ mmilata ];
|
|
};
|
|
}
|