{ lib, buildGoModule, fetchFromGitHub, }: buildGoModule rec { pname = "sql_exporter"; version = "0.17.1"; src = fetchFromGitHub { owner = "burningalchemist"; repo = pname; rev = version; sha256 = "sha256-AEPFXPplHtny1P3gMvB1gbMj10bpu9PXc6ywliF+dCc="; }; vendorHash = "sha256-KFWDqbdbXvgEtz1nlasWrvIckpzasUdzbb+AKfXmYf8="; meta = with lib; { description = "Database-agnostic SQL exporter for Prometheus"; mainProgram = "sql_exporter"; homepage = "https://github.com/burningalchemist/sql_exporter"; license = licenses.mit; }; }