Advertisement
Guest User

Untitled

a guest
Jan 31st, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. (define-module (gnu packages wicd)
  2. #:use-module (guix packages)
  3. #:use-module (guix download)
  4. #:use-module (guix build-system python)
  5. #:use-module (guix licenses))
  6.  
  7. (define-public hello
  8. (package
  9. (name "wicd")
  10. (version "1.7.3")
  11. (source (origin
  12. (method url-fetch)
  13. (uri (string-append "https://launchpade.net/wicd/1.7/" version "/+download/wicd-" version".tar.gz))
  14. (sha256
  15. (base32
  16. "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))))
  17. (build-system python-build-system)
  18.  
  19.  
  20. (synopsis "wicd, a network manager")
  21. (description "A network manager that aims to simplify wired and wireless networking in Linux")
  22. (home-page "launchpad.net/wicd")
  23. (license gpl2)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement