nixpkgs/pkgs/applications/misc/sequeler/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

2018-02-24 11:28:49 +00:00
{ stdenv, fetchFromGitHub
, meson, ninja, pkgconfig, pantheon, gettext, wrapGAppsHook, python3, desktop-file-utils
2018-08-20 20:31:18 +00:00
, gtk3, glib, libgee, libgda, gtksourceview, libxml2, libsecret, libfixposix, libssh2 }:
2018-02-24 11:28:49 +00:00
let
sqlGda = libgda.override {
mysqlSupport = true;
postgresSupport = true;
};
in stdenv.mkDerivation rec {
pname = "sequeler";
version = "0.6.8";
2018-02-24 11:28:49 +00:00
src = fetchFromGitHub {
owner = "Alecaddd";
repo = pname;
2018-02-24 11:28:49 +00:00
rev = "v${version}";
sha256 = "1rx8h3bi86vk8j7c447pwm590z061js4w45nzrp66r41v0rnh5vk";
2018-02-24 11:28:49 +00:00
};
nativeBuildInputs = [ meson ninja pkgconfig pantheon.vala gettext wrapGAppsHook python3 desktop-file-utils ];
2018-02-24 11:28:49 +00:00
2018-08-20 20:31:18 +00:00
buildInputs = [ gtk3 glib pantheon.granite libgee sqlGda gtksourceview libxml2 libsecret libfixposix libssh2 ];
postPatch = ''
chmod +x build-aux/meson_post_install.py
patchShebangs build-aux/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;
};
}