diff options
author | Antero Mejr <[email protected]> | 2023-06-04 17:42:25 +0000 |
---|---|---|
committer | Danny Milosavljevic <[email protected]> | 2024-12-22 13:17:05 +0100 |
commit | 7cff75e7c00ea1e23bbcdd9c853e2ba8d04416e2 (patch) | |
tree | 9ace6a81523f4322c272a224abc2375dcfb47879 | |
parent | 9af8ed27daa43cdddec2fdd6d8c542f7a938c81a (diff) |
gnu: Add perl-safe-hole.
* gnu/packages/perl.scm (perl-safe-hole): New variable.
Signed-off-by: Danny Milosavljevic <[email protected]>
-rw-r--r-- | gnu/packages/perl.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index b473b742ef..2d6dfdab4a 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -9965,6 +9965,27 @@ and @code{deserialize_regexp}.") (sha256 (base32 "11qn516352yhi794www3ykwa9xv2gxpfnhn9jcn10x0ahl95gflj")))))) +(define-public perl-safe-hole + (package + (name "perl-safe-hole") + (version "0.14") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/T/TO/TODDR/Safe-Hole-" version + ".tar.gz")) + (sha256 + (base32 + "01gc2lfli282dj6a2pkpxb0vmpyavs323cbdw15gxi06pn5nxxgl")))) + (build-system perl-build-system) + (native-inputs (list perl-module-build)) + (home-page "https://metacpan.org/release/Safe-Hole") + (synopsis "Use main compartment subroutines from the Safe compartment") + (description + "@code{Safe::Hole} can execute outside defined subroutines in the +original main compartment from the Safe compartment.") + (license license:perl-license))) + (define-public perl-safe-isa (package (name "perl-safe-isa") |