diff options
-rw-r--r-- | bugwarrior.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bugwarrior.scm b/bugwarrior.scm index df05679..f07d19a 100644 --- a/bugwarrior.scm +++ b/bugwarrior.scm @@ -1,4 +1,5 @@ (define-module (bugwarrior) + #:use-module ((guix licenses) :prefix license:) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages databases) @@ -92,7 +93,7 @@ mechanism of @code{dogpile}.") (home-page "http://github.com/ralphbean/bugwarrior") (synopsis "Sync github, bitbucket, and trac issues with taskwarrior") (description "Sync github, bitbucket, and trac issues with taskwarrior") - (license #f))) + (license license:gpl3))) (define-public python-email-validator-2.1.1 (package @@ -118,7 +119,7 @@ mechanism of @code{dogpile}.") (description "This package provides a robust email address syntax and deliverability validation library.") - (license #f))) + (license license:unlicense))) (define-public python-pydantic-2.7.1 (package @@ -149,5 +150,5 @@ mechanism of @code{dogpile}.") (home-page "http://github.com/ralphbean/taskw") (synopsis "Python bindings for your taskwarrior database") (description "Python bindings for your taskwarrior database") - (license #f))) + (license license:gpl3))) |