mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, nix-update-script
|
|
, vala, meson, ninja, pkg-config, pantheon, gettext, wrapGAppsHook3, 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.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Alecaddd";
|
|
repo = pname;
|
|
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;
|
|
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
|
|
platforms = platforms.linux;
|
|
mainProgram = "com.github.alecaddd.sequeler";
|
|
};
|
|
}
|