lxqt.qterminal: use mkDerivation from stdenv
This commit is contained in:
parent
7102217fce
commit
199c74ff7b
1 changed files with 6 additions and 4 deletions
|
@ -1,17 +1,18 @@
|
|||
{ lib
|
||||
, mkDerivation
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, lxqt-build-tools
|
||||
, qtermwidget
|
||||
, qtbase
|
||||
, qtermwidget
|
||||
, qttools
|
||||
, qtx11extras
|
||||
, wrapQtAppsHook
|
||||
, gitUpdater
|
||||
, nixosTests
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "qterminal";
|
||||
version = "1.4.0";
|
||||
|
||||
|
@ -26,12 +27,13 @@ mkDerivation rec {
|
|||
cmake
|
||||
lxqt-build-tools
|
||||
qttools
|
||||
wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtx11extras
|
||||
qtermwidget
|
||||
qtx11extras
|
||||
];
|
||||
|
||||
passthru.updateScript = gitUpdater { };
|
||||
|
|
Loading…
Reference in a new issue