lxqt.qterminal: 1.4.0 -> 2.0.0

Diff: https://github.com/lxqt/qterminal/compare/1.4.0...2.0.0
This commit is contained in:
José Romildo 2024-05-20 09:38:06 -03:00
parent 9ee17ce743
commit 3bd6e4e5b0
2 changed files with 3 additions and 8 deletions

View File

@ -38,10 +38,7 @@ let
pcmanfm-qt = callPackage ./pcmanfm-qt {};
### OPTIONAL
qterminal = callPackage ./qterminal {
lxqt-build-tools = lxqt-build-tools_0_13;
inherit (pkgs.libsForQt5) qtbase qttools qtx11extras;
};
qterminal = callPackage ./qterminal {};
compton-conf = callPackage ./compton-conf {
lxqt-build-tools = lxqt-build-tools_0_13;
inherit (pkgs.libsForQt5) qtbase qttools qtx11extras;

View File

@ -6,7 +6,6 @@
, qtbase
, qtermwidget
, qttools
, qtx11extras
, wrapQtAppsHook
, gitUpdater
, nixosTests
@ -14,13 +13,13 @@
stdenv.mkDerivation rec {
pname = "qterminal";
version = "1.4.0";
version = "2.0.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
hash = "sha256-nojNx351lYw0jVKEvzAIDP1WrZWcCAlfYMxNG95GcEo=";
hash = "sha256-SesKJCiMoiqkvMM29+0IMERozQ9zuD+NJTtaC6j7ubM=";
};
nativeBuildInputs = [
@ -33,7 +32,6 @@ stdenv.mkDerivation rec {
buildInputs = [
qtbase
qtermwidget
qtx11extras
];
passthru.updateScript = gitUpdater { };