diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-07-30 15:49:29 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-07-31 08:41:57 -0400 |
commit | 4ecfbda72ef0ffed514bb2b95810ac0cd3cdcff8 (patch) | |
tree | b444958a462b6cc99f98da90ed61246ada3afe89 /gnu/packages/admin.scm | |
parent | 9589c6890ac48e495e7791ac87ebce56653d2c6b (diff) | |
download | guix-4ecfbda72ef0ffed514bb2b95810ac0cd3cdcff8.tar guix-4ecfbda72ef0ffed514bb2b95810ac0cd3cdcff8.tar.gz |
gnu: Add graphios.
* gnu/packages/admin.scm (graphios): New variable.
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index e1bb74c8cd..1066d390f4 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -29,6 +29,7 @@ #:use-module (guix git-download) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system python) #:use-module (guix build-system trivial) #:use-module (gnu packages) #:use-module (gnu packages base) @@ -1130,3 +1131,43 @@ degradation and failure.") "fdupes is a program for identifying duplicate files residing within specified directories.") (license license:expat))) + +(define-public graphios + (package + (name "graphios") + (version "2.0.3") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/g/graphios/graphios-" + version ".tar.gz")) + (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)))))) + (inputs + `(("python-setuptools" ,python2-setuptools))) + (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+))) |