janneke pushed a commit to branch core-packages-team
in repository guix.

commit 4cc4d9d95f637de266bbb1df24b5441b77f81bdc
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sat Jan 4 10:14:23 2025 +0100

    gnu: Add autoconf-2.72.
    
    * gnu/packages/autotools.scm (autoconf-2.72): New variable.
    
    Change-Id: I9bb20e9a98cbc1d53ac2ca350da875c144f99ce1
---
 gnu/packages/autotools.scm | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index 301c1e9b8f..273a75509e 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -10,7 +10,7 @@
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2018 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2019 Pierre-Moana Levesque <[email protected]>
-;;; Copyright © 2020, 2023, 2024 Janneke Nieuwenhuizen <[email protected]>
+;;; Copyright © 2020, 2023, 2024, 2025 Janneke Nieuwenhuizen <[email protected]>
 ;;; Copyright © 2021 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2022 Marius Bakke <[email protected]>
 ;;;
@@ -144,6 +144,18 @@ know anything about Autoconf or M4.")
                                               (lambda (file stat)
                                                 (executable-file? 
file)))))))))))))
 
+(define-public autoconf-2.72
+  (package (inherit autoconf-2.71)
+    (version "2.72")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://gnu/autoconf/autoconf-"
+                          version ".tar.xz"))
+      (sha256
+       (base32
+        "0niz4852fgyavfh3gr4h4kzalk01nk70v6vfsja6r3ap349mr25s"))))))
+
 (define-public autoconf autoconf-2.69)
 
 (define-public autoconf-2.68

Reply via email to