(define-module (wordpress) #:use-module (guix build-system copy) #:use-module (guix packages) #:use-module (gnu packages) #:use-module (guix download) #:use-module ((guix licenses) :prefix license:) ) (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+))))