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)
37 lines
1.0 KiB
Nix
37 lines
1.0 KiB
Nix
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake
|
|
, qtbase, qttools, sqlcipher, wrapGAppsHook3, qtmacextras
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "sqlitebrowser";
|
|
version = "3.12.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-33iVic0kxemWld+SiHOWGlKFSi5fpk1RtLUiNDr7WNI=";
|
|
};
|
|
|
|
# We should be using qscintilla from nixpkgs instead of the vendored version,
|
|
# but qscintilla is currently in a bit of a mess as some consumers expect a
|
|
# -qt4 or -qt5 prefix while others do not.
|
|
# We *really* should get that cleaned up.
|
|
buildInputs = [ qtbase sqlcipher ] ++ lib.optionals stdenv.isDarwin [ qtmacextras ];
|
|
|
|
nativeBuildInputs = [ cmake qttools wrapGAppsHook3 ];
|
|
|
|
cmakeFlags = [
|
|
"-Dsqlcipher=1"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "DB Browser for SQLite";
|
|
mainProgram = "sqlitebrowser";
|
|
homepage = "https://sqlitebrowser.org/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|