Skip to content

Instantly share code, notes, and snippets.

@darth-cheney
Created November 15, 2021 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darth-cheney/accca2d8d8df45601baa69629583fec2 to your computer and use it in GitHub Desktop.
Save darth-cheney/accca2d8d8df45601baa69629583fec2 to your computer and use it in GitHub Desktop.
Guix Package Attempt NWS
;; Guix Package for Guile NWS tools
(define-module (guile-nws)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix build-system guile)
#:use-module (guix git-download)
;#:use-module (gnu packages guile guile-json)
#:use-module (gnu packages guile))
(define-public guile-nws
(let ((commit "3f37a6a0e185936355845e172ad9cfbc18826739"))
(package
(name "guile-nws")
(version "0.1a")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/darth-cheney/guile-nws.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0ynkgi6myk9kwm6vlafaafsdjk4i14lhiacwdjrclnim94p67a1g"))
))
(build-system guile-build-system)
(inputs
`(("guile" ,guile-3.0)
;("json" ,guile-json)
))
(synopsis "National Weather Service (NWS) API Tools for Guile Scheme")
(description "National Weather Service (NWS) API Tools for Guile Scheme")
(home-page "https://gitlab.com/darth-cheney/guile-nws")
(license gpl2))))
guile-nws
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment