2018-02-24 11:28:49 +00:00
|
|
|
{ stdenv, fetchFromGitHub
|
2018-12-02 11:41:15 +00:00
|
|
|
, meson, ninja, pkgconfig, vala, gobject-introspection, gettext, wrapGAppsHook, python3, desktop-file-utils
|
2018-06-10 08:58:03 +00:00
|
|
|
, gtk3, glib, granite, libgee, libgda, gtksourceview, libxml2, libsecret }:
|
2018-02-24 11:28:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
let
|
2018-12-16 12:36:56 +00:00
|
|
|
version = "0.6.5";
|
2018-02-24 11:28:49 +00:00
|
|
|
sqlGda = libgda.override {
|
|
|
|
mysqlSupport = true;
|
|
|
|
postgresSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "sequeler-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Alecaddd";
|
|
|
|
repo = "sequeler";
|
|
|
|
rev = "v${version}";
|
2018-12-16 12:36:56 +00:00
|
|
|
sha256 = "18d0dwrsn69fx1lwm6ihhk2r4996pxiy4hfv608gc1kl4s4f4sqp";
|
2018-02-24 11:28:49 +00:00
|
|
|
};
|
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig vala gobject-introspection gettext wrapGAppsHook python3 desktop-file-utils ];
|
2018-02-24 11:28:49 +00:00
|
|
|
|
2018-06-10 08:58:03 +00:00
|
|
|
buildInputs = [ gtk3 glib granite libgee sqlGda gtksourceview libxml2 libsecret ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
2018-02-24 11:28:49 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/Alecaddd/sequeler;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.etu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|