diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-11-02 10:42:33 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-11-02 10:42:33 +0100 |
commit | 44daec7fa4ae97a3c4490adf461322ec9f7a780a (patch) | |
tree | b18c6c72d5a084768bf313f09bb15ad6ffdf6a57 | |
parent | 7c02eb6c8d7d050ecb8f3082c4a754ad32211403 (diff) | |
download | guix-44daec7fa4ae97a3c4490adf461322ec9f7a780a.tar.gz |
ci: Convert license to text.
This is a follow-up of 7c02eb6c8d7d050ecb8f3082c4a754ad32211403. * gnu/ci.scm (package->alist): Convert license to text.
-rw-r--r-- | gnu/ci.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index adcb04f380..1d16805b4f 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -89,7 +89,7 @@ (system . ,(derivation-system drv)) (description . ,(package-synopsis package)) (long-description . ,(package-description package)) - (license . ,(package-license package)) + (license . ,(and=> (package-license package) license-name)) (home-page . ,(package-home-page package)) (maintainers . ("bug-guix@gnu.org")) (max-silent-time . ,(or (assoc-ref (package-properties package) |