mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
sqlitebrowser: add wrapGAppsHook
Fixes opening file dialogs on non-NixOS: $ ./result/bin/sqlitebrowser [... try to open a file dialog: File -> Open Database ...] (.sqlitebrowser-wrapped:7229): GLib-GIO-ERROR **: 11:27:46.197: Settings schema 'org.gtk.Settings.FileChooser' does not contain a key named 'show-type-column' Trace/breakpoint trap (core dumped)
This commit is contained in:
parent
86bb7b63e2
commit
397e068a54
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{ mkDerivation, lib, fetchFromGitHub, cmake
|
||||
, qtbase, qttools, sqlite }:
|
||||
, qtbase, qttools, sqlite, wrapGAppsHook }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "sqlitebrowser";
|
||||
|
@ -18,7 +18,7 @@ mkDerivation rec {
|
|||
# We *really* should get that cleaned up.
|
||||
buildInputs = [ qtbase sqlite ];
|
||||
|
||||
nativeBuildInputs = [ cmake qttools ];
|
||||
nativeBuildInputs = [ cmake qttools wrapGAppsHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "DB Browser for SQLite";
|
||||
|
|
Loading…
Reference in a new issue