diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-11 13:34:15 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:57 +0000 |
commit | 719fa62297485e4d133b3d227ceb4a8b556345f9 (patch) | |
tree | 907e13ff05517a739a18a3f47da82f52cf2e3f62 /gnu/packages/golang.scm | |
parent | 597adcc192af13ef5b9d469f9ef70b0e53cc77da (diff) |
gnu: go-github-com-golang-freetype: Update to 0.0.0-20170609003504-e2365dfdc4a0.
* gnu/packages/golang.scm (go-github-com-golang-freetype): Update to 0.0.0-20170609003504-e2365dfdc4a0.
Change-Id: I3bfcc112e1f894c7e0ca9c457ead749e2c7f2fa3
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 8688214248..d899be6b3a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2304,18 +2304,15 @@ characters with their ASCII approximations.") (license license:asl2.0)))) (define-public go-github-com-golang-freetype - (let ((commit "e2365dfdc4a05e4b8299a783240d4a7d5a65d4e4") - (revision "1")) (package (name "go-github-com-golang-freetype") - (version (git-version "0.0.0" revision commit)) + (version "0.0.0-20170609003504-e2365dfdc4a0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/golang/freetype") - (commit commit))) - (file-name (string-append "go-github-com-golang-freetype-" - version "-checkout")) + (url "https://github.com/golang/freetype") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) (sha256 (base32 "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc")))) @@ -2328,7 +2325,7 @@ characters with their ASCII approximations.") (synopsis "Freetype font rasterizer in the Go programming language") (description "The Freetype font rasterizer in the Go programming language.") (license (list license:freetype - license:gpl2+))))) + license:gpl2+)))) (define-public go-github-com-fogleman-gg (package |