2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, nix-update-script
|
2021-01-17 03:09:27 +01:00
|
|
|
, vala, meson, ninja, pkg-config, pantheon, gettext, wrapGAppsHook, python3, desktop-file-utils
|
2019-04-08 00:01:34 +02:00
|
|
|
, gtk3, glib, libgee, libgda, gtksourceview, libxml2, libsecret, libssh2 }:
|
2018-02-24 12:28:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
sqlGda = libgda.override {
|
|
|
|
mysqlSupport = true;
|
|
|
|
postgresSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-03-21 04:04:01 +01:00
|
|
|
pname = "sequeler";
|
2021-08-18 01:16:43 +02:00
|
|
|
version = "0.8.2";
|
2018-02-24 12:28:49 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Alecaddd";
|
2019-03-21 04:04:01 +01:00
|
|
|
repo = pname;
|
2018-02-24 12:28:49 +01:00
|
|
|
rev = "v${version}";
|
2021-08-18 01:16:43 +02:00
|
|
|
sha256 = "sha256-MsHHTYERe0v+u3KnVtx+jmJTKORJTJ7bNfJMZHV9Ly4=";
|
2018-02-24 12:28:49 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config vala gettext wrapGAppsHook python3 desktop-file-utils ];
|
2018-02-24 12:28:49 +01:00
|
|
|
|
2019-04-08 00:01:34 +02:00
|
|
|
buildInputs = [ gtk3 glib pantheon.granite libgee sqlGda gtksourceview libxml2 libsecret libssh2 ];
|
2018-06-10 10:58:03 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
2019-01-03 10:20:03 +01:00
|
|
|
chmod +x build-aux/meson_post_install.py
|
|
|
|
patchShebangs build-aux/meson_post_install.py
|
2018-06-10 10:58:03 +02:00
|
|
|
'';
|
2018-02-24 12:28:49 +01:00
|
|
|
|
2019-12-23 00:19:30 +01:00
|
|
|
passthru = {
|
2020-07-29 18:33:39 +02:00
|
|
|
updateScript = nix-update-script {
|
2019-12-23 00:19:30 +01:00
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-02-24 12:28:49 +01:00
|
|
|
description = "Friendly SQL Client";
|
|
|
|
longDescription = ''
|
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 21:10:43 +02:00
|
|
|
homepage = "https://github.com/Alecaddd/sequeler";
|
2018-02-24 12:28:49 +01:00
|
|
|
license = licenses.gpl3;
|
2021-09-18 17:00:51 +02:00
|
|
|
maintainers = with maintainers; [ etu ] ++ teams.pantheon.members;
|
2018-02-24 12:28:49 +01:00
|
|
|
platforms = platforms.linux;
|
2021-11-03 11:27:38 +01:00
|
|
|
mainProgram = "com.github.alecaddd.sequeler";
|
2018-02-24 12:28:49 +01:00
|
|
|
};
|
|
|
|
}
|