Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (use-modules (guix packages)
- (guix git-download)
- (guix build-system python)
- (guix licenses))
- (define-public maestral
- (package
- (name "maestral")
- (version "0.0-48ee3b9") ; Indicate it's based on commit 48ee3b9
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/samschott/maestral.git")
- (commit "48ee3b9e0c11e0682d15350ed1931fc99e9b0e75")))
- (sha256
- (base32 "replace-with-calculated-hash")))) ; Compute and replace this
- (build-system python-build-system)
- (arguments
- `(#:tests? #f)) ; Skip tests if not applicable
- (home-page "https://github.com/samschott/maestral")
- (synopsis "Open-source Dropbox client for macOS and Linux")
- (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.")
- (license mit)))
Advertisement
Add Comment
Please, Sign In to add comment