~ruther/guix-local

eba8c08b1bfc7ac333a0eda658a0be5acac7f151 — Junker 1 year, 15 days ago 8416738
gnu: Add crow-translate.

* gnu/packages/kde.scm (crow-translate): New variable.

Change-Id: I119646d76cd228fb21227dde14bbe2f5571804ce
Reviewed-by: Noé Lopez <noelopez@free.fr>
Signed-off-by: Andreas Enge <andreas@enge.fr>
1 files changed, 34 insertions(+), 0 deletions(-)

M gnu/packages/kde.scm
M gnu/packages/kde.scm => gnu/packages/kde.scm +34 -0
@@ 20,6 20,7 @@
;;; Copyright © 2023 Mehmet Tekman <mtekman89@gmail.com>
;;; Copyright © 2024 Remco van 't Veer <remco@remworks.net>
;;; Copyright © 2025 Sughosha <sughosha@disroot.org>
;;; Copyright © 2025 Junker <dk@junkeria.club>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 94,6 95,7 @@
  #:use-module (gnu packages markup)
  #:use-module (gnu packages maths)
  #:use-module (gnu packages mp3)
  #:use-module (gnu packages ocr)
  #:use-module (gnu packages onc-rpc)
  #:use-module (gnu packages pdf)
  #:use-module (gnu packages perl)


@@ 141,6 143,38 @@
This package contains GUI widgets for baloo.")
    (license license:lgpl2.0+)))

(define-public crow-translate
  (package
    (name "crow-translate")
    (version "3.1.0")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://kde/stable/crow-translate/" version
                           "/crow-translate-v" version ".tar.gz"))
       (sha256
        (base32 "18f7i5sxrvqp6h7zj77sdxyy9rlbw0rv3w7akf1j14072ala9bwc"))))
    (build-system qt-build-system)
    (arguments '(#:tests? #f)) ; there are no tests.
    (inputs
     (list qtbase-5
           qtx11extras
           qtsvg-5
           qtmultimedia-5
           tesseract-ocr
           kwayland-5))
    (native-inputs
     (list pkg-config
           extra-cmake-modules
           qttools-5))
    (home-page "https://invent.kde.org/office/crow-translate")
    (synopsis "Application for translating text")
    (description
     "Crow Translate is an application written in C++/Qt for translating
and speaking text which relies on Mozhi to interface with various
translation engines.")
    (license license:gpl3+)))

(define-public futuresql
  (package
    (name "futuresql")