grafana-old: outdated, probably without users

This commit is contained in:
Franz Pletz 2017-02-15 00:41:20 +01:00
parent 736fde5be3
commit f87eb8920c
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 0 additions and 32 deletions

View file

@ -1,30 +0,0 @@
{ stdenv, fetchurl, unzip, conf ? null }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "grafana-${version}";
version = "1.9.1";
src = fetchurl {
url = "http://grafanarel.s3.amazonaws.com/${name}.zip";
sha256 = "1zyzsbspxrzaf2kk6fysp6c3y025s6nd75rc2p9qq9q95dv8fj23";
};
buildInputs = [ unzip ];
phases = ["unpackPhase" "installPhase"];
installPhase = ''
mkdir -p $out && cp -R * $out
${optionalString (conf!=null) ''cp ${conf} $out/config.js''}
'';
meta = {
description = "A Graphite & InfluxDB Dashboard and Graph Editor";
homepage = http://grafana.org/;
license = licenses.asl20;
maintainers = [ maintainers.offline ];
platforms = stdenv.lib.platforms.unix;
};
}

View file

@ -1993,8 +1993,6 @@ with pkgs;
gptfdisk = callPackage ../tools/system/gptfdisk { };
grafana-old = callPackage ../development/tools/misc/grafana { };
grafx2 = callPackage ../applications/graphics/grafx2 {};
grails = callPackage ../development/web/grails { jdk = null; };