1750e105dd
Fix build dependency needed in 0.5.6 and forwards. Changelogs: - https://github.com/Alecaddd/sequeler/releases/tag/v0.5.6 - https://github.com/Alecaddd/sequeler/releases/tag/v0.5.7 - https://github.com/Alecaddd/sequeler/releases/tag/v0.5.8 - https://github.com/Alecaddd/sequeler/releases/tag/v0.5.9
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, meson, ninja, pkgconfig, vala, gobjectIntrospection, gettext, wrapGAppsHook, desktop-file-utils
|
|
, gtk3, glib, granite, libgee, libgda, gtksourceview, libxml2, libsecret }:
|
|
|
|
|
|
let
|
|
version = "0.5.9";
|
|
sqlGda = libgda.override {
|
|
mysqlSupport = true;
|
|
postgresSupport = true;
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "sequeler-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Alecaddd";
|
|
repo = "sequeler";
|
|
rev = "v${version}";
|
|
sha256 = "08dgir1prjfh7kxdxksabia5093gcjyy2yy7s57yizszplw2v07v";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig vala gobjectIntrospection gettext wrapGAppsHook desktop-file-utils ];
|
|
|
|
buildInputs = [ gtk3 glib granite libgee sqlGda gtksourceview libxml2 libsecret ];
|
|
|
|
postPatch = ''
|
|
chmod +x meson/post_install.py
|
|
patchShebangs meson/post_install.py
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|