unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: phodina via <help-guix@gnu.org>
To: help-guix <help-guix@gnu.org>
Cc: "Ludovic Courtès" <ludo@gnu.org>
Subject: Guix supported-systems option
Date: Sat, 14 Jan 2023 19:33:13 +0000	[thread overview]
Message-ID: <wffg-enwREcUDoDKXSs6q3oWefvqC5YEOGSCLXTohuD1oasE9NWTeGgz_95LyXF8Hz5nyymgLF8QnNgfgbfDRPFfFjH7-1rZTMxU5Zt2XHM=@protonmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 1279 bytes --]

Hello,

I have recently uncovered a "feature" that works little bit than described in the manual,

During definition of a new variable, package, there is an option called supported-systems​ which defaults to %default-systems​.

However, if the package is known to work on certain architecture the right thing is to list the supported architectures, right?

If I select package which is not supported by my current architecture and build it I get notification like this one:
`warning: package grafana@9.3.2 does not support x86_64-linux`

So suppose I have the same package for different architectures, each has it's own unique tarball.

I've defined one package and inherited from it, changing the source​ for the other and selecting the correct supported-systems​.
Unfortunately, this approach fails as Guix does not select the right package I want to use on the current system.

So should the approach be to define just one variable for the package and then conditionally select the right tarball/git for the package?

Also is this considered bug or a feature?

FIY I know the right way would be to build Grafana from source in this case which would solve the issue I just wanted to know in general more about the use case of the supported-systems​ option.

----
Petr

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: grafana.scm --]
[-- Type: text/x-scheme; name=grafana.scm, Size: 4627 bytes --]

;;; SPDX-License-Identifier: GPL-3.0-or-later
;;; Copyright © 2021-2022 Petr Hodina <phodina@protonmail.com>

(define-module (nongnu packages grafana)
  #:use-module (guix packages)
  #:use-module (gnu packages base)
  #:use-module (gnu packages elf)
  #:use-module (gnu packages gcc)
  #:use-module (gnu packages glib)
  #:use-module (guix download)
  #:use-module (nonguix build-system binary)
  #:use-module ((guix licenses)
                #:prefix license:))

(define-public grafana-bin
  (package
    (name "grafana")
    (version "9.3.2")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://dl.grafana.com/oss/release/grafana-" version
                    ".linux-amd64.tar.gz"))
              (sha256
               (base32
                "177d396sg6pwa7vwsdwqy6fg17kq47n619s4745z62s6inq3i0vr"))))
    (build-system binary-build-system)
    (arguments
     '(#:strip-binaries? #f ;TODO: For some reason it fails validate-runpath
       ;; phase if enabled
       #:install-plan `(("bin/grafana-cli" "bin/grafana-cli")
                        ("bin/grafana-server" "bin/grafana-server")
                        ("conf/defaults.ini" "etc/grafana/grafana.ini")
                        ("conf" "share/grafana/")
                        ("public" "share/grafana/")
                        ("scripts" "share/grafana/")
                        ("plugins-bundled" "share/grafana/"))
       #:patchelf-plan (list (list "bin/grafana-cli"
                                   '("glibc" "gcc:lib"))
                             (list "bin/grafana-server"
                                   '("glibc" "gcc:lib")))
       #:phases
       ;; TODO: This should be moved to the service
       (modify-phases %standard-phases
         (add-after 'unpack 'fix-data-dir-path
           (lambda _
             (substitute* "conf/defaults.ini"
               (("data = data")
                "data = /var/lib/grafana")
               (("logs = data/log")
                "data = /var/logs/grafana")
               (("plugins = data/plugins")
                "data = /var/lib/grafana")))))))

    (supported-systems '("x86_64-linux"))
    (native-inputs (list patchelf))
    (inputs `(("gcc:lib" ,gcc "lib")
              ("glibc" ,glibc)))
    (synopsis "Platform for monitoring and observability")
    (description
     "Grafana allows you to query, visualize, alert on
and understand your metrics no matter where they are stored.  Create, explore,
and share dashboards with your team and foster a data-driven culture:
@enumerate
@ite Visualizations: Fast and flexible client side graphs with a multitude
of options.  Panel plugins offer many different ways to visualize metrics
and logs
@item Dynamic Dashboards: Create dynamic & reusable dashboards with template
variables that appear as dropdowns at the top of the dashboard.
@item Explore Metrics: Explore your data through ad-hoc queries and dynamic
drilldown.  Split view and compare different time ranges, queries and data
sources side by side.
@item Explore Logs: Experience the magic of switching from metrics to logs with
preserved label filters. Quickly search through all your logs or streaming them
live.
@item Alerting: Visually define alert rules for your most important metrics.
Grafana will continuously evaluate and send notifications to systems like Slack,
PagerDuty, VictorOps, OpsGenie.
@item Mixed Data Sources: Mix different data sources in the same graph! You can
specify a data source on a per-query basis. This works for even custom
datasources.
@end enumerate")
    (home-page "https://grafana.com/")
    (license license:agpl3)))

(define-public grafana-bin-aarch64
  (package
    (inherit grafana-bin)
    (name "grafana")
    (version "9.3.2")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://dl.grafana.com/oss/release/grafana-" version
                    ".linux-arm64.tar.gz"))
              (sha256
               (base32
                "1ps8aa279fh8hcngda794f69w6hm78pw9pgvwyxlnx229581zrkv"))))
    (supported-systems '("aarch64-linux"))))

(define-public grafana-bin-armhf
  (package
    (inherit grafana-bin)
    (name "grafana")
    (version "9.3.2")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://dl.grafana.com/oss/release/grafana-" version
                    ".linux-armv7.tar.gz"))
              (sha256
               (base32
                "0avndch41m5k7gpxzdk8k1gzz3nyscmw3va4mk5813vbfmynv2bn"))))
    (supported-systems '("armhf-linux"))))

             reply	other threads:[~2023-01-14 19:34 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-14 19:33 phodina via [this message]
2023-01-14 20:19 ` Guix supported-systems option Julien Lepiller
2023-01-14 22:01   ` phodina via
2023-01-14 23:48     ` Julien Lepiller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='wffg-enwREcUDoDKXSs6q3oWefvqC5YEOGSCLXTohuD1oasE9NWTeGgz_95LyXF8Hz5nyymgLF8QnNgfgbfDRPFfFjH7-1rZTMxU5Zt2XHM=@protonmail.com' \
    --to=help-guix@gnu.org \
    --cc=ludo@gnu.org \
    --cc=phodina@protonmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).