blob: 5608429b8e4ecaa5ef352b2a4fa322b470384378 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
(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+))))
|