Advertisement
Guest User

Untitled

a guest
Apr 10th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. (define-module (wed packages lisp-custom)
  2. #:use-module (guix build-system asdf)
  3. #:use-module (guix packages)
  4. #:use-module (guix git-download)
  5. #:use-module ((guix licenses) #:prefix license:))
  6.  
  7. (define-public cl-find-port
  8. (package
  9. (name "cl-find-port")
  10. (build-system asdf-build-system/sbcl)
  11. (source
  12. (origin
  13. (method git-fetch)
  14. (uri (git-reference
  15. (url "https://github.com/eudoxia0/find-port")
  16. (commit "00c96a25af93a0f8681d34ec548861f2d7485478")))
  17. (sha256
  18. (base32
  19. "0d6dzbb45jh0rx90wgs6v020k2xa87mvzas3mvfzvivjvqqlpryq"))))
  20. (arguments
  21. `(#:tests? #f))
  22. (version "0.1")
  23. (synopsis "Find open ports programmatically.")
  24. (home-page "https://github.com/eudoxia0/find-port")
  25. (description "Find open ports programmatically.")
  26. (license license:expat)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement