summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-09-14 11:20:54 +0300
committerThanos Apollo <[email protected]>2024-09-14 11:20:54 +0300
commit89bc5024b574a76748240d1817a88d8444f8f2ba (patch)
tree6ee0d8d69d49a87273664f1a3f54e1d9c4ea7833
parent7a46952619cf0cd4a4f60f985f0c747f299bd68e (diff)
packages: binaries: Remove hugo-bin.HEADmaster
* Use rosenthal instead.
-rw-r--r--hecate/packages/binaries.scm78
1 files changed, 39 insertions, 39 deletions
diff --git a/hecate/packages/binaries.scm b/hecate/packages/binaries.scm
index e21a522..62881c7 100644
--- a/hecate/packages/binaries.scm
+++ b/hecate/packages/binaries.scm
@@ -11,42 +11,42 @@
#:use-module (gnu packages gcc)
#:use-module (gnu packages glib))
-(define-public hugo-bin
- (package
- (name "hugo-bin")
- (version "0.128.2")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/gohugoio/hugo" "/releases/download/v"
- version "/hugo_extended_" version "_linux-amd64.tar.gz"))
- (sha256
- (base32
- "1i8jqhw9rra3xjkxzzyj6liqrg52wdi5cdzf3dzijv6pap0m6cm8"))))
- (build-system copy-build-system)
- (arguments
- (list #:install-plan #~'(("hugo" "bin/"))
- #:phases
- #~(modify-phases %standard-phases
- (delete 'strip)
- (add-after 'install 'patch-elf
- (lambda _
- (let ((hugo (string-append #$output "/bin/hugo")))
- (invoke "patchelf" "--set-interpreter"
- (string-append #$(this-package-input "glibc")
- #$(glibc-dynamic-linker))
- hugo)
- (invoke "patchelf" "--set-rpath"
- (string-append (ungexp (this-package-input "gcc")
- "lib")
- "/lib")
- hugo)))))))
- (supported-systems '("x86_64-linux"))
- (native-inputs (list patchelf))
- (inputs (list `(,gcc "lib") glibc))
- (home-page "https://gohugo.io/")
- (synopsis "Static site generator")
- (description
- "Hugo is a static site generator written in Go, optimized for speed and
-designed for flexibility.")
- (license license:asl2.0)))
+;; (define-public hugo-bin
+;; (package
+;; (name "hugo-bin")
+;; (version "0.128.2")
+;; (source (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "https://github.com/gohugoio/hugo" "/releases/download/v"
+;; version "/hugo_extended_" version "_linux-amd64.tar.gz"))
+;; (sha256
+;; (base32
+;; "1i8jqhw9rra3xjkxzzyj6liqrg52wdi5cdzf3dzijv6pap0m6cm8"))))
+;; (build-system copy-build-system)
+;; (arguments
+;; (list #:install-plan #~'(("hugo" "bin/"))
+;; #:phases
+;; #~(modify-phases %standard-phases
+;; (delete 'strip)
+;; (add-after 'install 'patch-elf
+;; (lambda _
+;; (let ((hugo (string-append #$output "/bin/hugo")))
+;; (invoke "patchelf" "--set-interpreter"
+;; (string-append #$(this-package-input "glibc")
+;; #$(glibc-dynamic-linker))
+;; hugo)
+;; (invoke "patchelf" "--set-rpath"
+;; (string-append (ungexp (this-package-input "gcc")
+;; "lib")
+;; "/lib")
+;; hugo)))))))
+;; (supported-systems '("x86_64-linux"))
+;; (native-inputs (list patchelf))
+;; (inputs (list `(,gcc "lib") glibc))
+;; (home-page "https://gohugo.io/")
+;; (synopsis "Static site generator")
+;; (description
+;; "Hugo is a static site generator written in Go, optimized for speed and
+;; designed for flexibility.")
+;; (license license:asl2.0)))