diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-29 13:34:44 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-31 14:52:14 -0400 |
commit | cd46c8c34b4287f550d7744e31cf339dbd07dc45 (patch) | |
tree | f968ddfb2e2941bab52cdcb50b1ccc3237deb995 /gnu/packages/admin.scm | |
parent | 74641c7f66bc18a29aa92777a9616415eed6661e (diff) | |
download | guix-cd46c8c34b4287f550d7744e31cf339dbd07dc45.tar.gz |
gnu: Remove graphios.
* gnu/packages/admin.scm (graphios): Delete variable.
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 4e655551bd..2d817fc00f 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2567,42 +2567,6 @@ degradation and failure.") specified directories.") (license license:expat))) -(define-public graphios - (package - (name "graphios") - (version "2.0.3") - (source - (origin - (method url-fetch) - (uri (pypi-uri "graphios" version)) - (sha256 - (base32 - "1h87hvc315wg6lklbf4l7csd3n5pgljwrfli1p3nasdi0izgn66i")))) - (build-system python-build-system) - (arguments - ;; Be warned: Building with Python 3 succeeds, but the build process - ;; throws a syntax error that is ignored. - `(#:python ,python-2 - #:phases - (modify-phases %standard-phases - (add-before 'build 'fix-setup.py - (lambda* (#:key outputs #:allow-other-keys) - ;; Fix hardcoded, unprefixed file names. - (let ((out (assoc-ref outputs "out"))) - (substitute* '("setup.py") - (("/etc") (string-append out "/etc")) - (("/usr") out) - (("distro_ver = .*") "distro_ver = ''")) - #t)))))) - (home-page "https://github.com/shawn-sterling/graphios") - (synopsis "Emit Nagios metrics to Graphite, Statsd, and Librato") - (description - "Graphios is a script to emit nagios perfdata to various upstream metrics -processing and time-series systems. It's currently compatible with Graphite, -Statsd, Librato and InfluxDB. Graphios can emit Nagios metrics to any number -of supported upstream metrics systems simultaneously.") - (license license:gpl2+))) - (define-public ansible-core (package (name "ansible-core") |