Skip to content

Commit

Permalink
sequeler: init at 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
etu authored and jtojnar committed Feb 24, 2018
1 parent 55d2daa commit 3dfe50f
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pkgs/applications/misc/sequeler/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{ stdenv, fetchFromGitHub
, cmake, ninja, pkgconfig, vala, gobjectIntrospection, gettext, wrapGAppsHook
, gtk3, glib, granite, libgee, libgda, gtksourceview, libxml2 }:


let
version = "0.5.3";
sqlGda = libgda.override {
mysqlSupport = true;
postgresSupport = true;
};

in stdenv.mkDerivation rec {
name = "sequeler-${version}";

src = fetchFromGitHub {
owner = "Alecaddd";
repo = "sequeler";
rev = "v${version}";
sha256 = "0m5zwl9jfdl1dzd1ymlwx7rx5cr9fdx06sbnidaajh33z02zaph0";
};

nativeBuildInputs = [ cmake ninja pkgconfig vala gobjectIntrospection gettext wrapGAppsHook ];

buildInputs = [ gtk3 glib granite libgee sqlGda gtksourceview libxml2 ];

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;
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20710,6 +20710,10 @@ with pkgs;

iterm2 = callPackage ../applications/misc/iterm2 {};

sequeler = callPackage ../applications/misc/sequeler {
inherit (gnome3) gtksourceview libgda libgee;
};

sequelpro = callPackage ../applications/misc/sequelpro {};

maphosts = callPackage ../tools/networking/maphosts {};
Expand Down

0 comments on commit 3dfe50f

Please sign in to comment.