diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-03-20 14:13:07 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-03-20 14:22:37 -0500 |
commit | 31831e565d8c349a5ea660af632fd58280cb1f9d (patch) | |
tree | 391ff455f64c68d8bf109f48a87a775e563d49f7 /gnu/packages | |
parent | 869ff43afd11c01c7d8248d1009ee859501767db (diff) | |
download | gnu-guix-31831e565d8c349a5ea660af632fd58280cb1f9d.tar gnu-guix-31831e565d8c349a5ea660af632fd58280cb1f9d.tar.gz |
gnu: perl-cpanel-json-xs: Move to (gnu packages perl).
* gnu/packages/web.scm (perl-cpanel-json-xs): Move this...
* gnu/packages/perl.scm: To here.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/perl.scm | 21 | ||||
-rw-r--r-- | gnu/packages/web.scm | 21 |
2 files changed, 21 insertions, 21 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index ee27fb9ab3..767a898c90 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -861,6 +861,27 @@ the caller.") CPAN::Meta object are present.") (license (package-license perl)))) +(define-public perl-cpanel-json-xs + (package + (name "perl-cpanel-json-xs") + (version "3.0114") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/" + "Cpanel-JSON-XS-" version ".tar.gz")) + (sha256 + (base32 + "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71")))) + (build-system perl-build-system) + (propagated-inputs + `(("perl-common-sense" ,perl-common-sense))) + (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS") + (synopsis "JSON::XS for Cpanel") + (description "This module converts Perl data structures to JSON and vice +versa.") + (license (package-license perl)))) + (define-public perl-data-dump (package (name "perl-data-dump") diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index b3a049f7f6..8f1cf863d6 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -913,27 +913,6 @@ parameter parsing, file upload, cookie handling and header generation.") inputs, in a manner reminiscent of how PHP does.") (license l:bsd-2))) -(define-public perl-cpanel-json-xs - (package - (name "perl-cpanel-json-xs") - (version "3.0114") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/" - "Cpanel-JSON-XS-" version ".tar.gz")) - (sha256 - (base32 - "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71")))) - (build-system perl-build-system) - (propagated-inputs - `(("perl-common-sense" ,perl-common-sense))) - (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS") - (synopsis "JSON::XS for Cpanel") - (description "This module converts Perl data structures to JSON and vice -versa.") - (license (package-license perl)))) - (define-public perl-encode-locale (package (name "perl-encode-locale") |