diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm index fd78b456e06..c961c29536b 100644 --- a/gnu/packages/wxwidgets.scm +++ b/gnu/packages/wxwidgets.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice ;;; Copyright © 2019 Arun Isaac ;;; Copyright © 2022 Marius Bakke -;;; Copyright © 2023 Andreas Enge +;;; Copyright © 2023, 2025 Andreas Enge ;;; Copyright © 2023 Malte Frank Gerdes ;;; Copyright © 2023 Maxim Cournoyer ;;; Copyright © 2025 Ekaitz Zarraga @@ -251,41 +251,6 @@ and many other languages.") ((#:configure-flags flags #~'()) #~(append #$flags '("--with-gtk=2"))))))) -(define-public wxwidgets-2 - (package - (inherit wxwidgets) - (version "2.8.12") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/wxWidgets/wxWidgets/" - "releases/download/v" version - "/wxGTK-" version ".tar.gz")) - (sha256 - (base32 "1gjs9vfga60mk4j4ngiwsk9h6c7j22pw26m3asxr1jwvqbr8kkqk")))) - (inputs - `(("gtk" ,gtk+-2) - ("libjpeg" ,libjpeg-turbo) - ("libtiff" ,libtiff) - ("libmspack" ,libmspack) - ("sdl" ,sdl) - ("unixodbc" ,unixodbc))) - (arguments - `(#:configure-flags - '("--enable-unicode" "--with-regex=sys" "--with-sdl") - #:make-flags - (list (string-append "LDFLAGS=-Wl,-rpath=" - (assoc-ref %outputs "out") "/lib")) - ;; No 'check' target. - #:tests? #f - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'ignore-narrowing-errors - (lambda _ - (substitute* "configure" - (("-Wall") "-Wall -Wno-narrowing")) - #t))))))) - (define-public prusa-wxwidgets ;; There is no proper tag/release, all patches are in separate branches based on ;; the wxWidgets release (e.g. this commit is taken from "v3.2.0-patched" branch".)