Advertisement
Guest User

Guix gtypist recipe that doesn't work.

a guest
Mar 6th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. (use-modules (guix packages)
  2. (guix download)
  3. (guix build-system gnu)
  4. (guix licenses))
  5.  
  6. (define gtypist
  7. (package
  8. (name "gtypist")
  9. (version "2.9.4")
  10. (source (origin
  11. (method url-fetch)
  12. (uri (string-append "mirror://gnu/gtypist-" version
  13. ".tar.gz"))
  14. (sha256
  15. (base32 "i5q225g6twsg5egicgpt6ub7hn4m7pdzg56hwxx57jm4o4ns5fgq"))))
  16. (build-system gnu-build-system)
  17. (inputs `(("perl" ,perl)))
  18. (inputs `(("ncurses" ,ncurses)))
  19. (synopsis "GNU Typist")
  20. (description "The official GNU software to help improve your typing.")
  21. (home-page "http://www.gnu.org/software/gtypist/")
  22. (license gpl3+)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement