all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Alexandre Hannud Abdo <abdo@member.fsf.org>
To: 49614@debbugs.gnu.org
Subject: [bug#49614] [PATCH] gnu: Add sequeler.
Date: Sun, 18 Jul 2021 02:46:50 +0200	[thread overview]
Message-ID: <6440c80b-558a-9593-abf5-be0d7c948c10@member.fsf.org> (raw)


[-- Attachment #1.1.1: Type: text/plain, Size: 4347 bytes --]

* gnu/packages/databases.scm (sequeler): New variable.
---
  gnu/packages/databases.scm | 49 ++++++++++++++++++++++++++++++++++++++
  1 file changed, 49 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 28832041ed..19c720a94a 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -52,6 +52,7 @@
  ;;; Copyright © 2021 Pjotr Prins <pjotr.guix@thebird.nl>
  ;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
  ;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
+;;; Copyright © 2021 Alexandre Hannud Abdo <abdo@member.fsf.org>
  ;;;
  ;;; This file is part of GNU Guix.
  ;;;
@@ -78,6 +79,7 @@
    #:use-module (gnu packages bash)
    #:use-module (gnu packages bison)
    #:use-module (gnu packages boost)
+  #:use-module (gnu packages build-tools)
    #:use-module (gnu packages check)
    #:use-module (gnu packages cmake)
    #:use-module (gnu packages compression)
@@ -88,11 +90,14 @@
    #:use-module (gnu packages dbm)
    #:use-module (gnu packages emacs)
    #:use-module (gnu packages flex)
+  #:use-module (gnu packages freedesktop)
    #:use-module (gnu packages gcc)
    #:use-module (gnu packages gettext)
    #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnome)
    #:use-module (gnu packages gnupg)
    #:use-module (gnu packages golang)
+  #:use-module (gnu packages gtk)
    #:use-module (gnu packages guile)
    #:use-module (gnu packages icu4c)
    #:use-module (gnu packages jemalloc)
@@ -109,6 +114,7 @@
    #:use-module (gnu packages multiprecision)
    #:use-module (gnu packages ncurses)
    #:use-module (gnu packages onc-rpc)
+  #:use-module (gnu packages pantheon)
    #:use-module (gnu packages parallel)
    #:use-module (gnu packages pcre)
    #:use-module (gnu packages perl)
@@ -130,6 +136,7 @@
    #:use-module (gnu packages ruby)
    #:use-module (gnu packages serialization)
    #:use-module (gnu packages sphinx)
+  #:use-module (gnu packages ssh)
    #:use-module (gnu packages sqlite)
    #:use-module (gnu packages tcl)
    #:use-module (gnu packages terminals)
@@ -148,6 +155,7 @@
    #:use-module (guix build-system emacs)
    #:use-module (guix build-system gnu)
    #:use-module (guix build-system go)
+  #:use-module (guix build-system meson)
    #:use-module (guix build-system perl)
    #:use-module (guix build-system python)
    #:use-module (guix build-system ruby)
@@ -3983,3 +3991,44 @@ PostreSQL, SQLite, ODBC and MySQL.")
       "FreeTDS is an implementation of the Tabular DataStream protocol, 
used for
  connecting to MS SQL and Sybase servers over TCP/IP.")
      (license license:lgpl2.0+)))
+
+(define-public sequeler
+  (package
+    (name "sequeler")
+    (version "0.8.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/Alecaddd/sequeler")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1q1vzc3likpiwfh6blkyiz0wr0aarj9xrm8gbi7m3p1wslkpah7c"))))
+    (build-system meson-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("meson" ,meson)
+       ("vala" ,vala)
+       ("desktop-file-utils" ,desktop-file-utils)
+       ;; ("appstream-glib" ,appstream-glib) ; validation fails for 
lack of network
+       ("glib:bin" ,glib "bin") ; for glib-compile-resources
+       ("gtk+" ,gtk+ "bin")))
+    (inputs
+     `(("gtk+" ,gtk+)
+       ("granite" ,granite)
+       ("libgee" ,libgee)
+       ("glib" ,glib)
+       ("libxml2" ,libxml2)
+       ("libgda" ,libgda)
+       ("gtksourceview-3" ,gtksourceview-3)
+       ("libsecret" ,libsecret)
+       ("libssh2" ,libssh2)
+       ("gettext-minimal" ,gettext-minimal)))
+    (synopsis "Friendly SQL Client")
+    (description "Sequeler is a native Linux SQL client built in Vala and
+Gtk.  It allows you to connect to your local and remote databases, 
write SQL in
+a handy text editor with language recognition, and visualize SELECT 
results in
+a Gtk.Grid Widget.")
+    (home-page "https://github.com/Alecaddd/sequeler")
+    (license license:lgpl3+)))
-- 
2.32.0


[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3459 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 203 bytes --]

             reply	other threads:[~2021-07-18  0:47 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-18  0:46 Alexandre Hannud Abdo [this message]
     [not found] ` <handler.49614.B.162656922324597.ack@debbugs.gnu.org>
2021-07-19 12:44   ` [bug#49614] Acknowledgement ([PATCH] gnu: Add sequeler.) Alexandre Hannud Abdo
2021-07-19 12:47 ` [bug#49614] [PATCH] gnu: Add sequeler Alexandre Hannud Abdo
2021-07-20  9:02   ` bug#49614: " Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6440c80b-558a-9593-abf5-be0d7c948c10@member.fsf.org \
    --to=abdo@member.fsf.org \
    --cc=49614@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.