all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob bd83c1b66002b987abadb9f597d1e3a405769794 1165 bytes (raw)
name: gnu/packages/weather.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
(define-module (gnu packages weather)
  #:use-module (guix build-system go)
  #:use-module (guix git-download)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (gnu packages)
  #:use-module (gnu packages golang))

(define-public wego
  (package
    (name "wego")
    (version "2.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/schachmat/wego")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0bji9fywa0kg29zj1vrwq7l5f18hh0lcz6rl6sppi5id0qbjpiwl"))))
    (build-system go-build-system)
    (arguments '(#:import-path "github.com/schachmat/wego"))
    (propagated-inputs
     (list go-golang-org-x-sys
           go-github-com-rivo-uniseg
           go-github-com-mattn-go-isatty
           go-github-com-schachmat-ingo
           go-github-com-mattn-go-runewidth
           go-github-com-mattn-go-colorable))
    (home-page "https://github.com/schachmat/wego")
    (synopsis "Weather client for the terminal")
    (description "@strong{wego} is a weather client for the terminal.")
    (license isc)))

debug log:

solving bd83c1b660 ...
found bd83c1b660 in https://yhetil.org/guix/871qzmwm4w.fsf@nicolasgoaziou.fr/

applying [1/1] https://yhetil.org/guix/871qzmwm4w.fsf@nicolasgoaziou.fr/
diff --git a/gnu/packages/weather.scm b/gnu/packages/weather.scm
new file mode 100644
index 0000000000..bd83c1b660

Checking patch gnu/packages/weather.scm...
Applied patch gnu/packages/weather.scm cleanly.

index at:
100644 bd83c1b66002b987abadb9f597d1e3a405769794	gnu/packages/weather.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.