From 3af44aa49c8ed3dfd335cdfa132c0c2c9476e7b4 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 30 Jul 2020 14:15:42 +0200 Subject: [PATCH] gnu: public-inbox: Make git a regular input. * gnu/packages/mail.scm (public-inbox)[native-inputs]: Move GIT ... [inputs]: ... here. --- gnu/packages/mail.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 805e8e3473..5af6102438 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -3347,13 +3347,13 @@ related tools to process winmail.dat files.") (find-files (string-append out "/bin")))) #t))))) (native-inputs - `(("git" ,git) - ("xapian" ,xapian) + `(("xapian" ,xapian) ;; For testing. ("lsof" ,lsof) ("openssl" ,openssl))) (inputs - `(("perl-dbd-sqlite" ,perl-dbd-sqlite) + `(("git" ,git) + ("perl-dbd-sqlite" ,perl-dbd-sqlite) ("perl-dbi" ,perl-dbi) ("perl-email-address-xs" ,perl-email-address-xs) ("perl-email-mime-contenttype" ,perl-email-mime-contenttype)