deprecated.scm 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. (define-module (deprecated)
  2. #:use-module (guix channels)
  3. #:use-module (guix inferior)
  4. #:use-module (guix profiles)
  5. #:use-module (guix store)
  6. #:use-module (srfi srfi-1))
  7. (define channels
  8. (list (channel
  9. (name 'guix)
  10. (url "https://git.savannah.gnu.org/git/guix.git")
  11. (commit "f7e14782025bf87aaef694a21f34010b1a95f7f6") ;v1.0.1
  12. (introduction (@@ (guix channels) %guix-channel-introduction)))
  13. (channel
  14. (name 'guix-wigust)
  15. (url "https://github.com/kitnil/guix-wigust")
  16. (branch "master")
  17. (commit "68340baa8cdc1af1b8a8982c2607ff1dda195ee7"))))
  18. (define cached
  19. (with-store store
  20. (cached-channel-instance store
  21. channels
  22. #:authenticate? #t
  23. #:cache-directory (%inferior-cache-directory)
  24. #:ttl (* 3600 24 30))))
  25. (define inferior
  26. (open-inferior cached #:error-port (current-error-port)))
  27. (define-public openssh
  28. (first (lookup-inferior-packages inferior "openssh")))
  29. (define-public tigervnc-client
  30. (last (lookup-inferior-packages inferior "tigervnc-client")))
  31. (define-public tigervnc-server
  32. (last (lookup-inferior-packages inferior "tigervnc-server")))
  33. (define-public autofs
  34. (last (lookup-inferior-packages inferior "autofs")))
  35. (packages->manifest (list openssh))