From 43c560fc4b933b98708de9fec2e050abd8eb98eb Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sun, 7 Mar 2021 22:12:09 +0100 Subject: [PATCH] prometheus-knot-exporter: fix `-unstable-` infix Co-authored-by: Sandro --- pkgs/servers/monitoring/prometheus/knot-exporter.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/knot-exporter.nix b/pkgs/servers/monitoring/prometheus/knot-exporter.nix index 32722ff5593..f1c4c60531d 100644 --- a/pkgs/servers/monitoring/prometheus/knot-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/knot-exporter.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, lib, python3 }: stdenv.mkDerivation rec { - pname = "knot-exporter-unstable"; - version = "2020-01-30"; + pname = "knot-exporter"; + version = "unstable-2020-01-30"; src = fetchFromGitHub { owner = "ghedo";