Advertisement
Guest User

Untitled

a guest
Dec 4th, 2022
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.94 KB | None | 0 0
  1. (define-public python-tcod
  2.   ;; named branch is outdated
  3.   (let ((commit "d3419a5b4593c7df1580427fc07616d798c85856")
  4.         (revision "1"))
  5.     (package
  6.       (name "python-tcod")
  7.       (version "13.9.1")
  8.       (source
  9.        (origin
  10.          (method git-fetch)
  11.          (uri (git-reference
  12.                (url "https://github.com/libtcod/python-tcod")
  13.                (commit commit)
  14.                (recursive? #true)))
  15.          (file-name (git-file-name name version))
  16.          (sha256
  17.           (base32
  18.            "0k1ckh3jwasqaz6mlwh4lzcjag0zcj2b64h3534jqf9j60f1siqb"))))
  19.       (build-system python-build-system)
  20.       (home-page "https://github.com/libtcod/python-tcod")
  21.       (synopsis
  22.        "This library is a Python cffi port of libtcod")
  23.       (description
  24.        "A high-performance Python port of libtcod.
  25. Includes the libtcodpy module for backwards compatibility with older projects.")
  26.       (license license:bsd-2))))
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement