Browse Source
gnu: Add perl-ipc-system-simple.
* gnu/packages/perl.scm (perl-ipc-system-simple): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
version-0.11.0
Alex Sassmannshausen
6 years ago
committed by
Ludovic Courtès
No known key found for this signature in database
GPG Key ID: 90B11993D9AEBB5
1 changed files with
24 additions and
0 deletions
-
gnu/packages/perl.scm
|
|
@ -2792,6 +2792,30 @@ Perlish API and none of the bloat and rarely used features of IPC::Run.") |
|
|
|
allowing data to be efficiently communicated between processes.") |
|
|
|
(license (package-license perl)))) |
|
|
|
|
|
|
|
(define-public perl-ipc-system-simple |
|
|
|
(package |
|
|
|
(name "perl-ipc-system-simple") |
|
|
|
(version "1.25") |
|
|
|
(source (origin |
|
|
|
(method url-fetch) |
|
|
|
(uri (string-append |
|
|
|
"mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-" |
|
|
|
version ".tar.gz")) |
|
|
|
(sha256 |
|
|
|
(base32 |
|
|
|
"0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi")))) |
|
|
|
(build-system perl-build-system) |
|
|
|
(home-page "http://search.cpan.org/dist/IPC-System-Simple") |
|
|
|
(synopsis "Run commands simply, with detailed diagnostics") |
|
|
|
(description "Calling Perl's in-built @code{system} function is easy, |
|
|
|
determining if it was successful is hard. Let's face it, @code{$?} isn't the |
|
|
|
nicest variable in the world to play with, and even if you do check it, |
|
|
|
producing a well-formatted error string takes a lot of work. |
|
|
|
|
|
|
|
@code{IPC::System::Simple} takes the hard work out of calling external |
|
|
|
commands.") |
|
|
|
(license (package-license perl)))) |
|
|
|
|
|
|
|
(define-public perl-json |
|
|
|
(package |
|
|
|
(name "perl-json") |
|
|
|