diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-05-13 12:18:12 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-05-13 12:18:12 -0400 |
commit | faf2f936f0825a8064d8273313b5f9b7d377c2db (patch) | |
tree | 3e26d374107e70cca568a7c556234057f6d9820b | |
parent | 3070d1e082af44aced65afb045ae02232ada0fb5 (diff) |
guix: Remove custom guile-opengl package.
-rw-r--r-- | guix.scm | 18 |
1 files changed, 1 insertions, 17 deletions
@@ -59,22 +59,6 @@ (define target-guile guile-3.0-latest) -(define guile-opengl* - (let ((commit "bd1ac49b43430d85a75130ea962210e687599a89")) - (package - (inherit guile-opengl) - (version (string-append "0.2.0-1." (string-take commit 7))) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://git.savannah.gnu.org/git/guile-opengl.git") - (commit commit))) - (sha256 - (base32 - "1iq21x8hxdq4gsbykiy1q9xy43psv7jjripw4raxdy93fvdasj50")))) - (native-inputs (list autoconf automake pkg-config texinfo)) - (inputs (list freeglut glu mesa target-guile))))) - (define guile-sdl2 (let ((commit "e9a7f5e748719ce5b6ccd08ff91861b578034ea6")) (package @@ -124,7 +108,7 @@ SDL2 C shared library via the foreign function interface.") openal readline target-guile)) - (propagated-inputs (list guile-opengl* guile-sdl2)) + (propagated-inputs (list guile3.0-opengl guile-sdl2)) (synopsis "Game development toolkit for Guile Scheme") (description "Chickadee is a game development toolkit for Guile Scheme. It contains all of the basic components needed to develop |