{ lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "telegraf-${version}"; version = "1.3.0"; goPackagePath = "github.com/influxdata/telegraf"; excludedPackages = "test"; src = fetchFromGitHub { owner = "influxdata"; repo = "telegraf"; rev = "${version}"; sha256 = "0vcv4ylqzp4fvmpd3n5m0n2kxx39fcp9x62ny7cja4wraq36mdn0"; }; goDeps = ./. + builtins.toPath "/deps-${version}.nix"; meta = with lib; { description = "The plugin-driven server agent for collecting & reporting metrics."; license = licenses.mit; homepage = https://www.influxdata.com/time-series-platform/telegraf/; maintainers = with maintainers; [ mic92 roblabla ]; platforms = platforms.linux; }; }