From 1bb2b010034a01835832b0700c5862318745c2c2 Mon Sep 17 00:00:00 2001 From: Grigory Shepelev Date: Fri, 1 Dec 2023 11:11:40 +0300 Subject: [PATCH] + nongnu/packages/apm: `newrelic-cli` --- nongnu/packages/apm.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 nongnu/packages/apm.scm diff --git a/nongnu/packages/apm.scm b/nongnu/packages/apm.scm new file mode 100644 index 0000000..04c7d90 --- /dev/null +++ b/nongnu/packages/apm.scm @@ -0,0 +1,29 @@ +(define-module (nongnu packages apm) + #:use-module (guix download) + #:use-module (guix packages) + #:use-module (nonguix build-system binary) + #:use-module (guix licenses)) + +(define-public newrelic-cli + (package + (name "newrelic-cli") + (version "0.76.3") + (source + (origin + (method url-fetch) + (uri (string-append + "https://download.newrelic.com/install/newrelic-cli/v" + version "/newrelic-cli_" version "_Linux_x86_64.tar.gz")) + (sha256 + (base32 + "1v9sz89myszlqa6012n0x6vmfj4vvpzmwdp62llfxv204v55wnb4")))) + (build-system binary-build-system) + (arguments + `(#:install-plan + `(("newrelic" "/bin/")))) + (inputs `()) + (supported-systems '("x86_64-linux")) + (synopsis "Access the New Relic platform from the comfort of your terminal") + (description "You can use the New Relic CLI to manage entity tags, define workloads, record deployment markers. So you can use the CLI to automate common tasks in your DevOps workflow.") + (home-page "docs.newrelic.com/docs/new-relic-solutions/tutorials/new-relic-cli") + (license apsl2)))