diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-10-28 12:27:37 +0100 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-11-12 17:41:38 +0900 |
commit | 44b06b030dcd78b108fa3869255644e4db792d6b (patch) | |
tree | 678bc9594a62b6bdc0272cda550a733b51ccaeb1 /gnu/packages/game-development.scm | |
parent | 09bbdc3eadeeec4ffd8ff24a6fb2a07471d2f361 (diff) |
gnu: Remove allegro-5.0. [security fixes]
This package has no dependencies in Guix, is unsupported (see
https://liballeg.org/old.html) and is vulnerable to CVE-2021-36489.
* gnu/packages/game-development.scm (allegro-5.0): Delete variable.
* gnu/local.mk: Deregister patch.
* gnu/packages/patches/allegro-mesa-18.2.5-and-later.patch: Delete file.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index ee869c9cc5..6100e4e94e 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1132,24 +1132,6 @@ etc.") (home-page "https://liballeg.org") (license license:bsd-3))) -(define-public allegro-5.0 - (package (inherit allegro) - (name "allegro") - (version "5.0.11") - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/liballeg/allegro5/releases" - "/download/" version "/allegro-" - (if (equal? "0" (string-take-right version 1)) - (string-drop-right version 2) - version) - ".tar.gz")) - (patches (search-patches - "allegro-mesa-18.2.5-and-later.patch")) - (sha256 - (base32 - "0cd51qrh97jrr0xdmnivqgwljpmizg8pixsgvc4blqqlaz4i9zj9")))))) - (define-public aseprite (package (name "aseprite") |