* [bug#35906] [PATCH] guix import hackage: add two license types
@ 2019-05-25 20:09 Robert Vollmert
2019-05-26 8:25 ` bug#35906: " Marius Bakke
0 siblings, 1 reply; 2+ messages in thread
From: Robert Vollmert @ 2019-05-25 20:09 UTC (permalink / raw)
To: 35906; +Cc: Robert Vollmert
Now recognize "BSD-3-Clause" and "PublicDomain".
* guix/import/hackage.scm (string->license): Add two licenses.
---
guix/import/hackage.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/guix/import/hackage.scm b/guix/import/hackage.scm
index d6f5448cfc..c97b16197f 100644
--- a/guix/import/hackage.scm
+++ b/guix/import/hackage.scm
@@ -160,10 +160,12 @@ version."
("LGPL" "'lgpl??")
("BSD2" 'bsd-2)
("BSD3" 'bsd-3)
+ ("BSD-3-Clause" 'bsd-3)
("MIT" 'expat)
("ISC" 'isc)
("MPL" 'mpl2.0)
("Apache-2.0" 'asl2.0)
+ ("PublicDomain" 'public-domain)
((x) (string->license x))
((lst ...) `(list ,@(map string->license lst)))
(_ #f)))
--
2.21.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-05-26 8:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-25 20:09 [bug#35906] [PATCH] guix import hackage: add two license types Robert Vollmert
2019-05-26 8:25 ` bug#35906: " Marius Bakke
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
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).