guix: import: stackage: Fix JSON accessors.

* guix/import/stackage.scm (lts-info-ghc-version, lst-info-packages): Use
assoc-ref for accessing parsed JSON.
master
Timothy Sample 2018-08-28 09:45:36 -04:00 committed by Ricardo Wurmus
parent bb6419f374
commit 127586adfb
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 7 deletions

View File

@ -43,15 +43,12 @@
(define (lts-info-ghc-version lts-info)
"Retruns the version of the GHC compiler contained in LTS-INFO."
(match lts-info
((("snapshot" ("ghc" . version) _ _) _) version)
(_ #f)))
(and=> (assoc-ref lts-info "snapshot")
(cut assoc-ref <> "ghc")))
(define (lts-info-packages lts-info)
"Returns the alist of packages contained in LTS-INFO."
(match lts-info
((("packages" pkg ...) . _) pkg)
(_ '())))
"Retruns the alist of packages contained in LTS-INFO."
(or (assoc-ref lts-info "packages") '()))
(define (leave-with-message fmt . args)
(raise (condition (&message (message (apply format #f fmt args))))))