mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
grafana-old: outdated, probably without users
This commit is contained in:
parent
736fde5be3
commit
f87eb8920c
@ -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;
|
||||
};
|
||||
}
|
@ -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; };
|
||||
|
Loading…
Reference in New Issue
Block a user