guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/06: gnu: Add perl-extutils-f77.


From: guix-commits
Subject: 06/06: gnu: Add perl-extutils-f77.
Date: Fri, 6 Dec 2024 16:13:04 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit 4127992ff7c3b2aa0c3dfd1760ee4d7379b9f1db
Author: Danny Milosavljevic <dannym@friendly-machines.com>
AuthorDate: Fri Dec 6 20:28:20 2024 +0100

    gnu: Add perl-extutils-f77.
    
    * gnu/packages/perl.scm (perl-extutils-f77): New variable.
    
    Change-Id: I50b6e15e30d9b1dd2cfe5c1aae3398085069e303
---
 gnu/packages/perl.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 6b7eacd356..702369caf7 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -4866,6 +4866,26 @@ submodules of ExtUtils::Typemaps.")
 interface XS for C++; it is a thin layer over plain XS.")
     (license (package-license perl))))
 
+(define-public perl-extutils-f77
+  (package
+    (name "perl-extutils-f77")
+    (version "1.26")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/E/ET/ETJ/ExtUtils-F77-"
+                           version ".tar.gz"))
+       (sha256
+        (base32 "1mlxifj6lzvm4f8smr07ds03qbl6may40aqmbypgr92cxhz1vpdb"))))
+    (build-system perl-build-system)
+    (native-inputs (list gfortran))
+    (propagated-inputs (list perl-file-which))
+    (home-page "https://metacpan.org/release/ExtUtils-F77";)
+    (synopsis "Build helper for linking Fortran libraries")
+    (description "This package provides some compilation helpers so you can
+link Fortran libraries into C libraries.")
+    (license (package-license perl))))
+
 (define-public perl-file-changenotify
   (package
     (name "perl-file-changenotify")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]