mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
bdb851ee2d
elementary OS's ecosystem is curated around Ubuntu's LTS releases. This means the development platform for their curated applications always includes a LTS version of vala (in 18.04 it's 0.40). Because of how vala development works it suspect some of these applications to have serious issues if complied with the latest vala. However in the past year or so, for Pantheon at least, I don't think their applications will have much issues with latest vala, and if there is I don't think they'd be difficult to fix. In this single regard they've become more responsive since their preferred language is vala. As for the curated applications I have less of this confidence in. So I'd have to be accept less applications, but that's something I'm willing to compromise on. And this is easily reversible or could be done on a per-application basis. And nix already makes this trivial.
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, vala, meson, ninja, pkgconfig, pantheon, gettext, wrapGAppsHook, python3, desktop-file-utils
|
|
, gtk3, glib, libgee, libgda, gtksourceview, libxml2, libsecret, libssh2 }:
|
|
|
|
|
|
let
|
|
sqlGda = libgda.override {
|
|
mysqlSupport = true;
|
|
postgresSupport = true;
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "sequeler";
|
|
version = "0.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Alecaddd";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "16vc3v9qls9fxg9h8fsi67z68s4acl5hj14gbcrnqm7mf3kmk3aw";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig vala gettext wrapGAppsHook python3 desktop-file-utils ];
|
|
|
|
buildInputs = [ gtk3 glib pantheon.granite libgee sqlGda gtksourceview libxml2 libsecret libssh2 ];
|
|
|
|
postPatch = ''
|
|
chmod +x build-aux/meson_post_install.py
|
|
patchShebangs build-aux/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 ] ++ pantheon.maintainers;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|