Guest User

Untitled

a guest
Oct 11th, 2019
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. (define-module (gnu packages qgis)
  2. #:use-module (guix packages)
  3. #:use-module (guix download)
  4. #:use-module (guix build-system gnu)
  5. #:use-module (guix licenses))
  6.  
  7. (define-public qgis
  8. (package
  9. (name "qgis")
  10. (version "3.8.3")
  11. (source (origin
  12. (method url-fetch)
  13. (uri "https://github.com/qgis/QGIS/archive/final-3_8_3.tar.gz")
  14. (sha256
  15. (base32
  16. "0fdjhhvn41ngzq44xfbhvzzvqcngy4acyn4lm27n6sz44zf5mp8r"))))
  17. (build-system gnu-build-system)
  18. (synopsis "QGIS")
  19. (description "QGIS")
  20. (home-page "http://qgis.org")
  21. (license gpl3+)))
Advertisement
Add Comment
Please, Sign In to add comment