gnu: Add go-rsc-io-pdf.

* gnu/packages/golang-build.scm (go-rsc-io-pdf): New variable.

Change-Id: I518233cc328f37632462b452f27e7c109ddbbf1f
This commit is contained in:
Sharlatan Hellseher 2024-12-22 01:15:40 +00:00
parent f49382b19a
commit 74a939a394
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1184,6 +1184,29 @@ data. It is a successor to @code{go-github-com-golang-protobuf} with an
improved and cleaner API.")
(license license:bsd-3)))
(define-public go-rsc-io-pdf
(package
(name "go-rsc-io-pdf")
(version "0.1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rsc/pdf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "01qjjwa8nn5a2jzd360xqg5zc8s0i2fpwcn2w2g6y2jgn9wl8x84"))))
(build-system go-build-system)
(arguments
(list
#:tests? #f
#:import-path "rsc.io/pdf"))
(home-page "https://rsc.io/pdf")
(synopsis "PDF reader for Golang")
(description "Package pdf implements reading of PDF files.")
(license license:bsd-3)))
;;;
;;; Executables:
;;;