;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Ricardo Wurmus ;;; Copyright © 2017 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages perl-web) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (guix packages) #:use-module (gnu packages perl-check) #:use-module (guix download) #:use-module (guix build-system perl)) (define-public perl-mojolicious (package (name "perl-mojolicious") (version "7.59") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/S/SR/SRI/Mojolicious-" version ".tar.gz")) (sha256 (base32 "11whfrbafj191ahbhlhadws0vkg9kmvqswzkvswgwajhr1x678rh")))) (build-system perl-build-system) (home-page "http://mojolicious.org/") (synopsis "Real-time web framework") (description "Back in the early days of the web, many people learned Perl because of a wonderful Perl library called @code{CGI}. It was simple enough to get started without knowing much about the language and powerful enough to keep you going, learning by doing was much fun. While most of the techniques used are outdated now, the idea behind it is not. Mojolicious is a new endeavor to implement this idea using modern technologies.") (license license:artistic2.0))) (define-public perl-uri-escape (package (name "perl-uri-escape") (version "1.74") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/URI-" version ".tar.gz")) (sha256 (base32 "0gfmrpyy075pn2mbshs5599h8m096gjdz2dn8vcivjw9bzs59hm9")))) (build-system perl-build-system) (native-inputs `(("perl-test-needs" ,perl-test-needs))) (home-page "https://github.com/libwww-perl/URI") (synopsis "Percent-encode and percent-decode unsafe characters") (description "This module provides functions to percent-encode and percent-decode URI strings as defined by RFC 3986. Percent-encoding URI's is informally called URI escaping. This is the terminology used by this module, which predates the formalization of the terms by the RFC by several years.") (license license:perl-license))) ref='/guix/commit/gnu/services/dns.scm?id=5a0b78e62bc3122998990cea5ee17bdb2789aada'>services: dnsmasq: Support the --address flag....Pierre Langlois 2020-01-22services: knot-resolver: Manage a root TA at /var/cache/knot-resolver....宋文武 2019-11-11services: Add knot-resolver-service-type....宋文武 2019-04-27gnu: knot: Fix typos....Julien Lepiller 2019-04-27gnu: knot: Add configuration fields....Julien Lepiller 2019-04-27services: knot: Fix configuration file generation....Ludovic Courtès 2019-04-26gnu: dns: Fix configuration formating....Julien Lepiller 2019-04-25gnu: knot-service: Add includes field in configuration....Julien Lepiller 2018-12-04services: ddclient: Fix unrecognized keywords....Oleg Pykhalov 2018-11-06gnu: services: dns: Fix 'ddclient-activation'....Oleg Pykhalov 2018-08-30services: Add ddclient service....Oleg Pykhalov 2018-06-08services: dnsmasq-service-type: Add default configuration and description....宋文武 2018-06-08services: dnsmasq: Use 'negative-cache?' instead of 'no-negcache?'....宋文武 2018-06-05services: Add dnsmasq-service-type....宋文武