grafana: fix package naming

This commit is contained in:
Jaka Hudoklin 2015-09-06 15:22:43 +02:00
parent 93132d1717
commit 572ebb2f20
2 changed files with 3 additions and 3 deletions

View File

@ -206,7 +206,7 @@ in {
package = mkOption { package = mkOption {
description = "Package to use."; description = "Package to use.";
default = pkgs.grafana-backend; default = pkgs.grafana;
type = types.package; type = types.package;
}; };

View File

@ -1711,8 +1711,8 @@ let
gptfdisk = callPackage ../tools/system/gptfdisk { }; gptfdisk = callPackage ../tools/system/gptfdisk { };
grafana-frontend = callPackage ../development/tools/misc/grafana { }; grafana-old = callPackage ../development/tools/misc/grafana { };
grafana-backend = goPackages.grafana.bin // { outputs = [ "bin" ]; }; grafana = pkgs.goPackages.grafana.bin // { outputs = [ "bin" ]; };
grafx2 = callPackage ../applications/graphics/grafx2 {}; grafx2 = callPackage ../applications/graphics/grafx2 {};