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

31 lines
872 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, cmake, antlr
, qtbase, qttools, sqlite }:
2017-05-17 12:26:11 -07:00
mkDerivation rec {
pname = "sqlitebrowser";
2020-12-29 13:30:31 -08:00
version = "3.12.1";
2016-03-07 17:29:56 -08:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2020-12-29 13:30:31 -08:00
rev = "v${version}";
sha256 = "0ray6cscx2qil1dfi7hmpijmq3kba49wn430ih1q4fkz9psjvrz1";
};
# 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 = [ antlr qtbase sqlite ];
2017-05-17 12:26:11 -07:00
nativeBuildInputs = [ cmake qttools ];
2017-05-17 12:26:11 -07:00
meta = with lib; {
description = "DB Browser for SQLite";
homepage = "https://sqlitebrowser.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
2019-08-26 04:20:59 -07:00
platforms = platforms.unix;
};
}