gnu: Add perl-string-shellquote.
authorChristopher Baines <mail@cbaines.net>
Sun, 24 Mar 2019 18:09:43 +0000 (18:09 +0000)
committerChristopher Baines <mail@cbaines.net>
Sun, 14 Apr 2019 09:45:59 +0000 (10:45 +0100)
* gnu/packages/perl.scm (perl-string-shellquote): New variable.

gnu/packages/perl.scm

index 38cc5e7..86d07c3 100644 (file)
@@ -7716,6 +7716,28 @@ fixed string interpolation, and simple width-matching.")
 known prefixes.")
     (license (package-license perl))))
 
+(define-public perl-string-shellquote
+  (package
+    (name "perl-string-shellquote")
+    (version "1.04")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/R/RO/ROSCH/String-ShellQuote-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/String-ShellQuote")
+    (synopsis "Quote strings for passing through a shell")
+    (description
+     "@code{shell-quote} lets you pass arbitrary strings through the shell so
+that they won't be changed.")
+    (license (package-license perl))))
+
 (define-public perl-string-print
   (package
     (name "perl-string-print")