[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#30836] [PATCH 2/3] guix import elpa: use #f for license
From: |
Konrad Hinsen |
Subject: |
[bug#30836] [PATCH 2/3] guix import elpa: use #f for license |
Date: |
Fri, 16 Mar 2018 14:53:51 +0100 |
Elpa doesn't supply license information. The current importer pretends that
everything is GPL3, which is not true. The importer should not invent license
information.
---
guix/import/elpa.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm
index 7f76a13ad..cae10eb1c 100644
--- a/guix/import/elpa.scm
+++ b/guix/import/elpa.scm
@@ -234,7 +234,7 @@ type '<elpa-package>'."
(home-page ,(elpa-package-home-page pkg))
(synopsis ,(elpa-package-synopsis pkg))
(description ,(elpa-package-description pkg))
- (license license:gpl3+))))
+ (license #f))))
(define* (elpa->guix-package name #:optional (repo 'gnu))
"Fetch the package NAME from REPO and produce a Guix package S-expression."
--
2.16.2
- [bug#30836] [PATCH 2/3] guix import elpa: use #f for license,
Konrad Hinsen <=