diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-11-21 01:50:34 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-11-21 02:53:02 +0100 |
commit | 0056f4cc57f4e3111cd707b62bbbc8b615add135 (patch) | |
tree | ca93618efb9a9f1edab98371e07be23c23767f71 /gnu/packages/dns.scm | |
parent | 023ef01354671f28e88b1dd3e6f4cf9fefb6f6d9 (diff) | |
download | guix-0056f4cc57f4e3111cd707b62bbbc8b615add135.tar.gz |
gnu: knot: Update licence information.
* gnu/packages/dns.scm (knot)[license]: Add PUBLIC-DOMAIN. Expand comments.
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index c1cdb613a5..f930b903a9 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -558,6 +558,11 @@ number of programming techniques to improve speed. For example, the responder is completely lock-free, resulting in a very high response rate. Other features include automatic @dfn{DNS Security Extensions} (DNSSEC) signing, dynamic record synthesis, and on-the-fly re-configuration.") - (license (list license:expat ; src/contrib/{hat-trie,murmurhash3} - license:lgpl2.0+ ; parts of scr/contrib/ucw - license:gpl3+)))) ; everything else + (license + (list + ;; src/contrib/{hat-trie,murmurhash3,openbsd}, + ;; src/dnssec/contrib/vpool.[ch], and parts of libtap/ are ‘MIT’ (expat). + license:expat + license:lgpl2.0+ ; parts of scr/contrib/ucw + license:public-domain ; src/contrib/fnv and possibly murmurhash3 + license:gpl3+)))) ; everything else |