grafana: 5.0.0 -> 5.0.1

authored by WilliButz and committed by Robin Gloster ef90ff2d 28264de9

+4 -4
+1 -1
nixos/tests/grafana.nix
··· 20 20 $machine->start; 21 21 $machine->waitForUnit("grafana.service"); 22 22 $machine->waitForOpenPort(3000); 23 - $machine->succeed("curl -sS http://127.0.0.1:3000/"); 23 + $machine->succeed("curl -sSfL http://127.0.0.1:3000/"); 24 24 ''; 25 25 })
+3 -3
pkgs/servers/monitoring/grafana/default.nix
··· 1 1 { lib, buildGoPackage, fetchurl, fetchFromGitHub, phantomjs2 }: 2 2 3 3 buildGoPackage rec { 4 - version = "5.0.0"; 4 + version = "5.0.1"; 5 5 name = "grafana-${version}"; 6 6 goPackagePath = "github.com/grafana/grafana"; 7 7 ··· 9 9 rev = "v${version}"; 10 10 owner = "grafana"; 11 11 repo = "grafana"; 12 - sha256 = "1clkvi651wc4zx9bql5iwwnjgwgrj34dirs7ypi6rdgxissp89p9"; 12 + sha256 = "0nvns6ysnl7a4blcq9iyhhn9nxhk8fpwkfzlyvm8dx6y8hwawlq1"; 13 13 }; 14 14 15 15 srcStatic = fetchurl { 16 16 url = "https://grafana-releases.s3.amazonaws.com/release/grafana-${version}.linux-x64.tar.gz"; 17 - sha256 = "1n2l5ybscc0g1npsa648wjwwb4qrj3f549nf0y6wsifp5k051lhd"; 17 + sha256 = "1zjy4h2w8dghqziafn23msl29yds9w4q0ryywv1sdrzkb1331cyk"; 18 18 }; 19 19 20 20 preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";