Guest User

Untitled

a guest
Dec 9th, 2024
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. (use-modules (guix packages)
  2. (guix git-download)
  3. (guix build-system python)
  4. (guix licenses))
  5.  
  6. (define-public maestral
  7. (package
  8. (name "maestral")
  9. (version "0.0-48ee3b9") ; Indicate it's based on commit 48ee3b9
  10. (source (origin
  11. (method git-fetch)
  12. (uri (git-reference
  13. (url "https://github.com/samschott/maestral.git")
  14. (commit "48ee3b9e0c11e0682d15350ed1931fc99e9b0e75")))
  15. (sha256
  16. (base32 "replace-with-calculated-hash")))) ; Compute and replace this
  17. (build-system python-build-system)
  18. (arguments
  19. `(#:tests? #f)) ; Skip tests if not applicable
  20. (home-page "https://github.com/samschott/maestral")
  21. (synopsis "Open-source Dropbox client for macOS and Linux")
  22. (description "Maestral is a lightweight and open-source Dropbox client for macOS and Linux. It is designed to be a low-resource alternative to the official client.")
  23. (license mit)))
  24.  
Advertisement
Add Comment
Please, Sign In to add comment