From a26258d1d619203696e6c7f7ec21ba75014cc13d Mon Sep 17 00:00:00 2001 From: Hugo Buddelmeijer Date: Fri, 3 Apr 2026 12:28:37 +0200 Subject: [PATCH] gnu: alot: Make guix refresh work. * gnu/packages/mail.scm (alot): Make guix refresh work. [version]: Use "0.12" instead of "v0.12". Change-Id: I2dc5e1d8423d0c16ffffdb3b8f0e59bb9884c38c --- gnu/packages/mail.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 2af82c8b9b..7a87060325 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1419,13 +1419,13 @@ attachments, create new maildirs, and so on.") (define-public alot (package (name "alot") - (version "v0.12") + (version "0.12") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/pazz/alot") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "018zqpjrl3cggj1myysjj04a054mg890khhdh1qjmd70k8l3w1di"))))