guix-commits
[Top][All Lists]
Advanced

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

05/12: gnu: Add perl-tie-simple.


From: guix-commits
Subject: 05/12: gnu: Add perl-tie-simple.
Date: Sun, 14 Jun 2020 06:41:50 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit c158ab306710c260512b75952b591d08441b71da
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Jun 14 11:20:03 2020 +0200

    gnu: Add perl-tie-simple.
    
    * gnu/packages/perl.scm (perl-tie-simple): New variable.
---
 gnu/packages/perl.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index f201755..2d4ce0e 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -9947,6 +9947,31 @@ operations can also be performed on the IxHash.")
 by modifying the @code{seek()} and @code{tell()} calls.")
     (license asl2.0)))
 
+(define-public perl-tie-simple
+  (package
+    (name "perl-tie-simple")
+    (version "1.04")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/H/HA/HANENKAMP/"
+                           "Tie-Simple-" version ".tar.gz"))
+       (sha256
+        (base32 "04lbh07nlxhpp03gl20f9w8hxjb2vzlb7w85y9w6q12i749y5s99"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/Tie-Simple";)
+    (synopsis "Variable ties made much easier")
+    (description
+     "This module adds the ability to quickly create new types of tie objects
+without creating a complete class.  It does so in such a way as to try and
+make the programmers life easier when it comes to single-use ties that I find
+myself wanting to use from time-to-time.
+
+The Tie::Simple package is actually a front-end to other classes which really
+do all the work once tied, but this package does the dwimming to automatically
+figure out what you're trying to do.")
+    (license perl-license)))
+
 (define-public perl-tie-toobject
   (package
     (name "perl-tie-toobject")



reply via email to

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