guix.scm 999 B

123456789101112131415161718192021222324252627282930313233
  1. (use-modules (guix packages)
  2. (guix download)
  3. (guix git-download)
  4. (guix build-system gnu)
  5. (guix build-system guile)
  6. (gnu packages guile)
  7. ((guix licenses) #:prefix license:))
  8. (define-public guile-fslib
  9. (package
  10. (name "guile-fslib")
  11. (version "0.2.2")
  12. (source
  13. (origin
  14. (method git-fetch)
  15. (uri (git-reference
  16. (url "https://notabug.org/ZelphirKaltstahl/guile-fslib/")
  17. (commit version)))
  18. (file-name (git-file-name name version))
  19. (sha256
  20. (base32
  21. "0nci2wkj35srawf7hk31d8kd50njmrz4jmza4n4b48iavg9yrwwi"))))
  22. (build-system guile-build-system)
  23. (inputs
  24. `(("guile" ,guile-3.0)))
  25. (home-page "https://notabug.org/ZelphirKaltstahl/guile-fslib")
  26. (synopsis "File system utilities")
  27. (description
  28. "This library provides procedures for working with file systems from GNU Guile.")
  29. (license license:agpl3+)))
  30. guile-fslib