diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
commit | b4d1888da607aa73561478f2d4aab796443be8b9 (patch) | |
tree | a319a1e1d97fe56a7648ae9c5bd51afa6ede3a1f | |
parent | 8da108cc1e2819770244a9f57edc8056dd3656e3 (diff) | |
download | guix-techchud-b4d1888da607aa73561478f2d4aab796443be8b9.tar.gz guix-techchud-b4d1888da607aa73561478f2d4aab796443be8b9.tar.bz2 guix-techchud-b4d1888da607aa73561478f2d4aab796443be8b9.zip |
fix bugwarrior licenses
-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))) |