aboutsummaryrefslogtreecommitdiff
path: root/src/xyz
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-17 17:01:54 -0300
committerEuAndreh <eu@euandre.org>2022-10-17 17:02:45 -0300
commit3e4206a18cf044cc0087361eac19fb358e48e149 (patch)
tree9a029985a10b600c5be60b590729e32ac9cd1db3 /src/xyz
parentsrc/xyz/euandreh/docs.scm: Remove "rfcs" package (diff)
downloadpackage-repository-3e4206a18cf044cc0087361eac19fb358e48e149.tar.gz
package-repository-3e4206a18cf044cc0087361eac19fb358e48e149.tar.xz
src/xyz/euandreh/docs.scm: Remove "posix-man-pages" package
Upstream already has packaged it, under the "man-pages-posix" name.
Diffstat (limited to 'src/xyz')
-rw-r--r--src/xyz/euandreh/docs.scm29
1 files changed, 2 insertions, 27 deletions
diff --git a/src/xyz/euandreh/docs.scm b/src/xyz/euandreh/docs.scm
index 32d2668..5de2e69 100644
--- a/src/xyz/euandreh/docs.scm
+++ b/src/xyz/euandreh/docs.scm
@@ -11,31 +11,6 @@
#:use-module (guix build-system perl)
#:use-module (guix build-system trivial))
-(define-public posix-man-pages
- (package
- (name "posix-man-pages")
- (version "2017-a")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://kernel.org/linux/docs/man-pages/man-pages-posix/man-pages-posix-" version ".tar.xz"))
- (sha256
- (base32
- "1hwb65h9c7y8c69jiyhs0nphzisb7yl0br3jszd212q4nljvnryf"))))
- (build-system gnu-build-system)
- (arguments
- `(#:make-flags
- (list (string-append "prefix=" %output))
- #:tests? #f
- #:phases
- (modify-phases %standard-phases
- (delete 'configure))))
- (home-page "https://www.kernel.org/doc/man-pages/download.html")
- (synopsis "POSIX manual pages sections 0p, 1p and 3p")
- (description
- "This package provides the reference POSIX version of Unix \"man pages\"
-documenting the specification.")
- (license gpl2+))) ;; FIXME
-
(define-public perl-commonmark
(package
(name "perl-commonmark")
@@ -60,9 +35,9 @@ documenting the specification.")
perl-module-build))
(home-page "https://metacpan.org/release/CommonMark")
(synopsis "Interface to the CommonMark C library")
- (description "FIXME")
+ (description "This module is a wrapper around the official
+CommonMark C library libcmark. It closely follows the original API.")
(license perl-license)))
(list
- posix-man-pages
perl-commonmark)