gnu: Add perl-extutils-f77.

* gnu/packages/perl.scm (perl-extutils-f77): New variable.

Change-Id: I50b6e15e30d9b1dd2cfe5c1aae3398085069e303
This commit is contained in:
Danny Milosavljevic 2024-12-06 20:28:20 +01:00
parent 61e91cf90b
commit 4127992ff7
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -4866,6 +4866,26 @@ (define-public perl-extutils-xspp
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")