depot/third_party/nixpkgs/pkgs/development/tools/database/sqlitebrowser/default.nix
Default email 619d6dcc77 Project import generated by Copybara.
GitOrigin-RevId: 870959c7fb3a42af1863bed9e1756086a74eb649
2021-08-22 09:53:02 +02:00

30 lines
887 B
Nix

{ mkDerivation, lib, fetchFromGitHub, cmake
, qtbase, qttools, sqlite, wrapGAppsHook }:
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 sqlite ];
nativeBuildInputs = [ cmake qttools wrapGAppsHook ];
meta = with lib; {
description = "DB Browser for SQLite";
homepage = "https://sqlitebrowser.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}