nixpkgs/pkgs/development/tools/database/sqlitebrowser/default.nix

31 lines
887 B
Nix
Raw Normal View History

2021-06-20 10:23:37 +00:00
{ mkDerivation, lib, fetchFromGitHub, cmake
, qtbase, qttools, sqlite, wrapGAppsHook }:
2017-05-17 19:26:11 +00:00
mkDerivation rec {
pname = "sqlitebrowser";
2021-08-18 01:45:07 +00:00
version = "3.12.2";
2016-03-08 01:29:56 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2020-12-29 21:30:31 +00:00
rev = "v${version}";
2021-08-18 01:45:07 +00:00
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.
2021-06-20 10:23:37 +00:00
buildInputs = [ qtbase sqlite ];
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ cmake qttools wrapGAppsHook ];
2017-05-17 19:26:11 +00:00
meta = with lib; {
description = "DB Browser for SQLite";
homepage = "https://sqlitebrowser.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
2019-08-26 11:20:59 +00:00
platforms = platforms.unix;
};
}