Files
nixpkgs/pkgs/by-name/se/sequeler/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

90 lines
1.6 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
vala,
meson,
ninja,
pkg-config,
pantheon,
gettext,
wrapGAppsHook3,
python3,
desktop-file-utils,
gtk3,
glib,
libgee,
libgda5,
gtksourceview,
libxml2,
libsecret,
libssh2,
}:
let
sqlGda = libgda5.override {
mysqlSupport = true;
postgresSupport = true;
};
in
stdenv.mkDerivation rec {
pname = "sequeler";
version = "0.8.2";
src = fetchFromGitHub {
owner = "Alecaddd";
repo = "sequeler";
rev = "v${version}";
sha256 = "sha256-MsHHTYERe0v+u3KnVtx+jmJTKORJTJ7bNfJMZHV9Ly4=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
gettext
wrapGAppsHook3
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
'';
passthru = {
updateScript = nix-update-script { };
};
meta = with 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;
teams = [ teams.pantheon ];
platforms = platforms.linux;
mainProgram = "com.github.alecaddd.sequeler";
};
}