aboutsummaryrefslogtreecommitdiff
path: root/src/xyz/euandreh/docs.scm
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-04-20 10:53:33 -0300
committerEuAndreh <eu@euandre.org>2022-04-20 10:53:33 -0300
commit0ca3fe9ae6a0397e729689473dd19d25a719d176 (patch)
treeb328b1fcda369ffe755a061c65efd238dd966193 /src/xyz/euandreh/docs.scm
parentTODOs.md: Fix link to Git repository URL (diff)
downloadpackage-repository-0ca3fe9ae6a0397e729689473dd19d25a719d176.tar.gz
package-repository-0ca3fe9ae6a0397e729689473dd19d25a719d176.tar.xz
src/xyz/euandreh/docs.scm: Add posix-man-pages package
Diffstat (limited to 'src/xyz/euandreh/docs.scm')
-rw-r--r--src/xyz/euandreh/docs.scm34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/xyz/euandreh/docs.scm b/src/xyz/euandreh/docs.scm
new file mode 100644
index 0000000..b97a199
--- /dev/null
+++ b/src/xyz/euandreh/docs.scm
@@ -0,0 +1,34 @@
+(define-module (xyz euandreh docs)
+ #:use-module (guix licenses)
+ #:use-module (guix download)
+ #:use-module (guix packages)
+ #:use-module (guix build-system gnu))
+
+(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.")
+ ;; FIXME
+ (license gpl2+)))
+
+(list
+ posix-man-pages)