Advertisement
Guest User

hugo.scm

a guest
Feb 26th, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. (use-modules
  2. ((guix licenses) #:prefix license:)
  3. (guix packages)
  4. (guix git-download)
  5. (guix build-system go)
  6. (guix licenses))
  7.  
  8. (define-public hugo
  9. (package
  10. (name "hugo")
  11. (version "0.100.1")
  12. (source
  13. (origin
  14. (method git-fetch)
  15. (uri (git-reference
  16. (url "https://github.com/gohugoio/hugo")
  17. (commit (string-append "v" version))))
  18. (file-name (git-file-name name version))
  19. (sha256
  20. (base32
  21. "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j"))))
  22. (build-system go-build-system)
  23. (arguments
  24. '(#:import-path "github.com/russross/blackfriday"))
  25. ;;(propagated-inputs
  26. ;; (list go-github-com-shurcool-sanitized-anchor-name))
  27. ;;(native-inputs
  28. ;; (list go-github-com-pmezard-go-difflib))
  29. (home-page "https://gohugo.io/")
  30. (synopsis "Static site generator in Go")
  31. (description "Super fast markdown to static website generator in Go.")
  32. (license license:asl2.0)))
Tags: Hugo guix GUILE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement