Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (define-module (gnu packages wicd)
- #:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (guix build-system python)
- #:use-module (guix licenses))
- (define-public hello
- (package
- (name "wicd")
- (version "1.7.3")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://launchpade.net/wicd/1.7/" version "/+download/wicd-" version".tar.gz))
- (sha256
- (base32
- "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))))
- (build-system python-build-system)
- (synopsis "wicd, a network manager")
- (description "A network manager that aims to simplify wired and wireless networking in Linux")
- (home-page "launchpad.net/wicd")
- (license gpl2)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement