diff options
author | Petter <petter@mykolab.ch> | 2017-10-25 08:54:04 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-10-25 10:49:38 +0200 |
commit | 985c41458db5a573a8d638a420dc369b84081839 (patch) | |
tree | 9a1b250d9869fd4e7850fbdb9cd4fcd1ac9fcfed /gnu | |
parent | 65f7f6069397b2b8f867bb1ab292473b1b1f86dc (diff) | |
download | guix-985c41458db5a573a8d638a420dc369b84081839.tar.gz guix-985c41458db5a573a8d638a420dc369b84081839.zip |
gnu: Add perl-browser-open.
* gnu/packages/perl.scm (perl-browser-open): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu')
-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 ebb8a1fcab..a15c9e0606 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -382,6 +382,27 @@ fields pragma, consider this module discouraged in favor of the lighter-weight parent.") (license (package-license perl)))) ;See README +(define-public perl-browser-open + (package + (name "perl-browser-open") + (version "0.04") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-" + version ".tar.gz")) + (sha256 + (base32 + "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Browser-Open/") + (synopsis "Open a browser in a given URL") + (description "The functions exported by this module allow you to open URLs +in the user's browser. A set of known commands per OS-name is tested for +presence, and the first one found is executed. With an optional parameter, +all known commands are checked.") + (license (package-license perl)))) + (define-public perl-b-hooks-endofscope (package (name "perl-b-hooks-endofscope") |