From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: guix-devel@gnu.org
Subject: [PATCH] gnu: Add php-hello-world.
Date: Thu, 8 Dec 2016 18:45:32 +0100 [thread overview]
Message-ID: <1481219132-27353-1-git-send-email-h.goebel@crazy-compilers.com> (raw)
* gnu/packages/php.scm (php-hello-world): New variable.
---
gnu/packages/php.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm
index 9ccbede..f860f88 100644
--- a/gnu/packages/php.scm
+++ b/gnu/packages/php.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -48,6 +49,7 @@
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system trivial)
#:use-module ((guix licenses) #:prefix license:))
;; This fixes PHP bugs 73155 and 73159. Remove when gd
@@ -332,3 +334,38 @@ systems, web content management systems and web frameworks." )
license:lgpl2.1+ ; ext/bcmath/libbcmath
license:bsd-2 ; ext/fileinfo/libmagic
license:expat)))) ; ext/date/lib
+
+(define-public php-hello-world
+ (package
+ (name "php-hello-world")
+ (version "0.1")
+ (source #f)
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let* ((out (assoc-ref %outputs "out"))
+ (php (assoc-ref %build-inputs "php"))
+ (index.php (string-append out "/index.php")))
+ (mkdir-p out)
+ (call-with-output-file index.php
+ (lambda (p)
+ (format p "<html>
+ <head><title>PHP test page: Hello, Guix!</title></head>
+ <body>
+ <?php echo '<h1>Hello, Guix!</h1>'; ?>
+ <p>Today is: <?php echo date('Y-m-d'); ?></p>
+ </body>
+</html>~%")))
+ (chmod index.php #o555)))))
+ (inputs
+ `(("php" ,php)))
+ (synopsis "Hello, PHP world: An example PHP package")
+ (description
+ "PHP Hello World creates a simple HTML page saying \"Hello, Guix!\" and
+the current date. It serves as an example to be used in Guix PHP packages or
+services.")
+ (home-page "http://php.net/manual/en/tutorial.firstpage.php")
+ (license license:gpl3+)))
--
2.7.4
next reply other threads:[~2016-12-08 17:45 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-08 17:45 Hartmut Goebel [this message]
2016-12-08 17:47 ` [PATCH] gnu: Add php-hello-world Hartmut Goebel
2016-12-21 16:38 ` Ludovic Courtès
2016-12-22 17:43 ` Hartmut Goebel
2016-12-29 17:44 ` Ludovic Courtès
2016-12-29 19:20 ` Hartmut Goebel
2016-12-31 11:16 ` Ludovic Courtès
2016-12-31 12:12 ` Hartmut Goebel
2017-01-04 22:38 ` Ludovic Courtès
2016-12-08 17:52 ` [WIP 0/2] php-fpm service - assistance appreciated Hartmut Goebel
2016-12-08 17:52 ` [WIP 1/2] services: Add php-fpm service Hartmut Goebel
2016-12-08 17:52 ` [WIP 2/2] gnu: Add "PHP FPM" OS config example Hartmut Goebel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1481219132-27353-1-git-send-email-h.goebel@crazy-compilers.com \
--to=h.goebel@crazy-compilers.com \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).