[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add perl-const-fast.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add perl-const-fast. |
Date: |
Tue, 25 May 2021 07:51:04 -0400 |
This is an automated email from the git hooks/post-receive script.
roelj pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new bc13e79 gnu: Add perl-const-fast.
bc13e79 is described below
commit bc13e794763991e1883751bfdb1e7a48195cba97
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Tue May 25 13:50:26 2021 +0200
gnu: Add perl-const-fast.
* gnu/packages/perl.scm (perl-const-fast): New variable.
---
gnu/packages/perl.scm | 28 +++++++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index d355081..0e18c73 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -9,7 +9,7 @@
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner
<efraim@flashner.co.il>
;;; Copyright © 2016 Nikita <nikita@n0.is>
;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
-;;; Copyright © 2016, 2018, 2020 Roel Janssen <roel@gnu.org>
+;;; Copyright © 2016, 2018, 2020, 2021 Roel Janssen <roel@gnu.org>
;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
;;; Copyright © 2016, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
@@ -1918,6 +1918,32 @@ of the style used by the Git version control system.")
and writing of @code{.ini}-style configuration files.")
(license (package-license perl))))
+(define-public perl-const-fast
+ (package
+ (name "perl-const-fast")
+ (version "0.014")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://cpan/authors/id/L/LE/LEONT/"
+ "Const-Fast-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1nwlldgrx86yn7y6a53cqgvzm2ircsvxg1addahlcy6510x9a1gq"))))
+ (inputs
+ `(("perl-module-build-tiny" ,perl-module-build-tiny)
+ ("perl-test-fatal" ,perl-test-fatal)))
+ ;; Needed for tests.
+ (native-inputs
+ `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
+ (build-system perl-build-system)
+ (home-page "https://metacpan.org/release/Const-Fast")
+ (synopsis "Facility for creating read-only scalars, arrays, and hashes")
+ (description "This package provides prodecures to create read-only
+scalars, arrays, and hashes.")
+ (license (package-license perl))))
+
(define-public perl-context-preserve
(package
(name "perl-context-preserve")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add perl-const-fast.,
guix-commits <=