diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-09-13 06:38:12 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-09-13 06:38:12 -0500 |
commit | 677312b556a327982b6a460dcb1e5247486ed1bc (patch) | |
tree | 55e85c027fe735e02788e1665ae54b7d9b67d473 | |
parent | a8b204dad8397c9295c025d197361a10bb80fffa (diff) | |
download | guix-techchud-677312b556a327982b6a460dcb1e5247486ed1bc.tar.gz guix-techchud-677312b556a327982b6a460dcb1e5247486ed1bc.tar.bz2 guix-techchud-677312b556a327982b6a460dcb1e5247486ed1bc.zip |
update wordpress path
-rw-r--r-- | wordpress.scm | 36 |
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+)))) |