Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4289160b176d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a4d12f7d8102
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 12, 2020

  1. Copy the full SHA
    a94fedc View commit details

Commits on Apr 15, 2020

  1. Merge pull request #85109 from marsam/update-victoriametrics

    victoriametrics: 1.34.5 -> 1.34.7
    marsam authored Apr 15, 2020
    Copy the full SHA
    a4d12f7 View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/servers/nosql/victoriametrics/default.nix
11 changes: 6 additions & 5 deletions pkgs/servers/nosql/victoriametrics/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoModule rec {
buildGoPackage rec {
pname = "VictoriaMetrics";
version = "1.34.5";
version = "1.34.7";

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "0isifyvbrv0f6l32dycka67cpnizwh2c9ns2q8pz6r2myzbdsf3s";
sha256 = "0k4l3nq1d6f5qjx8svgga0ygv9mmhykvs3n3xr824ih6d0vrkzbg";
};

modSha256 = "0fr5yah4qicqjfgina1ghflaz8dlzsqk3rrpsvg5l68jb6l7nxkb";
goPackagePath = "github.com/VictoriaMetrics/VictoriaMetrics";

meta = with lib; {
homepage = "https://victoriametrics.com/";
description = "fast, cost-effective and scalable time series database, long-term remote storage for Prometheus";