summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoé Lopez <noelopez@free.fr>2025-12-18 21:50:19 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-06 14:53:16 +0100
commit93d5627b22e34ffb547c8167be2c9187937b5446 (patch)
tree19fc9123cea89d5bb3607cc842e43caad4baf016
parent60241261449bbe4d942af15297ff759497b55998 (diff)
gnu: dialect: Move to (gnu packages gnome-circle).
* gnu/packages/gnome-circle.scm (dialect): New variable. * gnu/packages/gnome.scm (dialect): Replace with deprecated alias. Change-Id: I15c393cf12906886912529d758fddc16d0951ec3 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r--gnu/packages/gnome-circle.scm41
-rw-r--r--gnu/packages/gnome.scm40
2 files changed, 43 insertions, 38 deletions
diff --git a/gnu/packages/gnome-circle.scm b/gnu/packages/gnome-circle.scm
index b213226159a..5d6da70b8fd 100644
--- a/gnu/packages/gnome-circle.scm
+++ b/gnu/packages/gnome-circle.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2019, 2024, 2025 Giacomo Leidi <goodoldpaul@autistici.org>
;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2020, 2021 Brice Waegeneire <brice@waegenei.re>
+;;; Copyright © 2023 Dominik Delgado Steuter <d@delgado.nrw>
;;; Copyright © 2025 Noé Lopez <noelopez@free.fr>
;;;
;;; This file is part of GNU Guix.
@@ -45,6 +46,7 @@
#:use-module (gnu packages linux)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
+ #:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages rust)
#:use-module (gnu packages sqlite)
@@ -206,6 +208,45 @@ uses duplicity as the backend, which supports incremental backups and storage
either on a local, or remote machine via a number of methods.")
(license license:gpl3+)))
+(define-public dialect
+ (package
+ (name "dialect")
+ (version "2.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dialect-app/dialect")
+ (commit version)
+ (recursive? #t))) ;po module
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0wac9r33zslyhvadyj7iaapskk7f9pfvia7zlqfksfhkaji6gmna"))))
+ (build-system meson-build-system)
+ (arguments
+ `(#:glib-or-gtk? #t))
+ (native-inputs (list blueprint-compiler
+ desktop-file-utils
+ `(,glib "bin")
+ gettext-minimal
+ gobject-introspection
+ `(,gtk "bin")
+ pkg-config))
+ (propagated-inputs (list gstreamer
+ libadwaita
+ libsoup
+ python
+ python-gtts
+ python-pygobject
+ python-requests))
+ (home-page "https://apps.gnome.org/app/app.drey.Dialect")
+ (synopsis "Translation application for GNOME")
+ (description
+ "Dialect is a simple translation application that uses Google Translate
+(default), LibreTranslate or Lingva Translate. It includes features
+like automatic language detection, text-to-speech and clipboard buttons.")
+ (license license:gpl3+)))
+
(define-public gnome-authenticator
(package
(name "gnome-authenticator")
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 4241f7b6326..557c7491b39 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -10784,44 +10784,8 @@ desktop. It supports multiple calendars, month, week and year view.")
to perfectly fit the GNOME desktop.")
(license license:gpl3+)))
-(define-public dialect
- (package
- (name "dialect")
- (version "2.1.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/dialect-app/dialect")
- (commit version)
- (recursive? #t))) ;po module
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0wac9r33zslyhvadyj7iaapskk7f9pfvia7zlqfksfhkaji6gmna"))))
- (build-system meson-build-system)
- (arguments
- `(#:glib-or-gtk? #t))
- (native-inputs (list blueprint-compiler
- desktop-file-utils
- `(,glib "bin")
- gettext-minimal
- gobject-introspection
- `(,gtk "bin")
- pkg-config))
- (propagated-inputs (list gstreamer
- libadwaita
- libsoup
- python
- python-gtts
- python-pygobject
- python-requests))
- (home-page "https://apps.gnome.org/app/app.drey.Dialect")
- (synopsis "Translation application for GNOME")
- (description
- "Dialect is a simple translation application that uses Google Translate
-(default), LibreTranslate or Lingva Translate. It includes features
-like automatic language detection, text-to-speech and clipboard buttons.")
- (license license:gpl3+)))
+(define-deprecated/public-alias dialect
+ (@ (gnu packages gnome-circle) dialect))
(define-public gnome-dictionary
(package