sqlitebrowser: 3.11.2 -> 3.12.0 (#91271)
This commit is contained in:
parent
554e90cae7
commit
fea4603212
|
@ -1,30 +1,30 @@
|
||||||
{ mkDerivation, lib, fetchFromGitHub, cmake, antlr
|
{ mkDerivation, lib, fetchFromGitHub, cmake, antlr
|
||||||
, qtbase, qttools, qscintilla, sqlite }:
|
, qtbase, qttools, sqlite }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "sqlitebrowser";
|
pname = "sqlitebrowser";
|
||||||
version = "3.11.2";
|
version = "3.12.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = version;
|
||||||
sha256 = "0ydd5fg76d5d23byac1f7f8mzx3brmd0cnnkd58qpmlzi7p9hcvx";
|
sha256 = "1arv4rzl8s1vjjqzz35l2b1rfzr2b8b23v97fdw1kdxpwvs63l99";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ antlr qtbase qscintilla sqlite ];
|
# 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 ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake qttools ];
|
nativeBuildInputs = [ cmake qttools ];
|
||||||
|
|
||||||
NIX_LDFLAGS = "-lQt5PrintSupport";
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "DB Browser for SQLite";
|
description = "DB Browser for SQLite";
|
||||||
homepage = "https://sqlitebrowser.org/";
|
homepage = "https://sqlitebrowser.org/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue