summaryrefslogtreecommitdiffstats
path: root/wordpress.scm
diff options
context:
space:
mode:
Diffstat (limited to 'wordpress.scm')
-rw-r--r--wordpress.scm36
1 files changed, 20 insertions, 16 deletions
diff --git a/wordpress.scm b/wordpress.scm
index 5608429..c3b4f43 100644
--- a/wordpress.scm
+++ b/wordpress.scm
@@ -7,19 +7,23 @@
)
(define-public wordpress
- (package
- (name "wordpress")
- (version "6.8.2")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://wordpress.org/wordpress-" version ".tar.gz"))
- (sha256 (base32 "0asychxz3ljf3h7n4fnca2m754398imbqbiwdf0nds5zjbip4nnq"))
- ;(patches (search-patches "aux-files/wordpress/wp-config.patch"))
- (patches (search-patches "/home/joybuke/Documents/ComputerScience/Projects/techchud/guix-techchud/aux-files/wordpress/wp-config.patch"))
- ))
- (build-system copy-build-system)
- (home-page "https://wordpress.org")
- (synopsis "A web content management system")
- (description "WordPress is a powerful and flexible content management system (CMS) that allows users to create and manage websites easily. It is built on PHP and MySQL, making it a popular choice for bloggers, businesses, and developers alike. With a vast library of themes and plugins, WordPress enables extensive customization, allowing users to tailor their sites to meet specific needs without requiring extensive coding knowledge.")
- (license (list license:gpl2+))))
+ (package
+ (name "wordpress")
+ (version "6.8.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://wordpress.org/wordpress-" version ".tar.gz"))
+ (sha256 (base32 "0asychxz3ljf3h7n4fnca2m754398imbqbiwdf0nds5zjbip4nnq"))
+ ;(patches (search-patches "aux-files/wordpress/wp-config.patch"))
+ (patches (search-patches "/home/joybuke/Documents/ComputerScience/Projects/techchud/guix-techchud/aux-files/wordpress/wp-config.patch"))
+ ))
+ (build-system copy-build-system)
+ (arguments
+ '(#:install-plan
+ '(("." "share/wordpress"))
+ ))
+ (home-page "https://wordpress.org")
+ (synopsis "A web content management system")
+ (description "WordPress is a powerful and flexible content management system (CMS) that allows users to create and manage websites easily. It is built on PHP and MySQL, making it a popular choice for bloggers, businesses, and developers alike. With a vast library of themes and plugins, WordPress enables extensive customization, allowing users to tailor their sites to meet specific needs without requiring extensive coding knowledge.")
+ (license (list license:gpl2+))))