Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 23806968dad2
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bc739d01ccbb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 30, 2019

  1. prometheus-node-exporter: remove go 1.9 pinning

    With Go1.11 the daemon seems to work just fine. I was unable to observe
    any crashes (due to the wifi module being loaded).
    andir committed Jan 30, 2019
    Copy the full SHA
    4f6152a View commit details
  2. Merge pull request #54910 from andir/18.09/prometheus-node-exporter

    [18.09] prometheus-node-exporter: remove go 1.9 pinning
    andir authored Jan 30, 2019
    Copy the full SHA
    bc739d0 View commit details
Showing with 2 additions and 4 deletions.
  1. +2 −4 pkgs/servers/monitoring/prometheus/node-exporter.nix
6 changes: 2 additions & 4 deletions pkgs/servers/monitoring/prometheus/node-exporter.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{ stdenv, buildGo19Package, fetchFromGitHub }:
{ stdenv, buildGoPackage, fetchFromGitHub }:

# Go 1.10 causes segfaults:
# https://github.com/prometheus/node_exporter/issues/870
buildGo19Package rec {
buildGoPackage rec {
name = "node_exporter-${version}";
version = "0.16.0";
rev = "v${version}";