guix_mirror_bot pushed a commit to branch master
in repository guix.

commit efb17a7358caf341637c616c92564f9e8ee055a1
Author: Patrick Norton <[email protected]>
AuthorDate: Tue Jan 27 06:37:45 2026 -0500

    gnu: calc: Update to 2.16.1.2.
    
    * gnu/packages/maths.scm (calc): Update to 2.16.1.2.
    [source]: Fetch directly from git.
    
    Change-Id: I8ce9eb069f6d53e87c915ebf9b323517ad81df27
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/maths.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 102571025e..33efda7087 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -293,14 +293,16 @@ interactive dialogs to guide them.")
 (define-public calc
   (package
     (name "calc")
-    (version "2.15.1.1")
+    (version "2.16.1.2")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "http://www.isthe.com/chongo/src/calc/calc-";
-                           version ".tar.bz2"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/lcn2/calc";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "1710wsyjg3k6qx5xaa5fa1r81izpgjiy676ayznd2p42rn3czmm2"))))
+        (base32 "18vb5gi9mf4c8vmhvimxqdzja8b56glyk23bpb2igwm903x3ciav"))))
     (build-system gnu-build-system)
     (inputs (list readline))
     (native-inputs (list man-db util-linux)) ;for col

Reply via email to