summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/optional/qterminal/default.nix
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-05-22 10:54:31 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2018-07-26 15:22:05 -0300
commit0fd1f4660cd4ff77850cb5fb60681aced8a09d04 (patch)
tree4fe77e97eb5b9038a4d0ecf772f52197246e126b /pkgs/desktops/lxqt/optional/qterminal/default.nix
parentc89832527cc2e1335507c2eed0e697ab76278024 (diff)
downloadnixpkgs-0fd1f4660cd4ff77850cb5fb60681aced8a09d04.tar
nixpkgs-0fd1f4660cd4ff77850cb5fb60681aced8a09d04.tar.gz
nixpkgs-0fd1f4660cd4ff77850cb5fb60681aced8a09d04.tar.bz2
nixpkgs-0fd1f4660cd4ff77850cb5fb60681aced8a09d04.tar.lz
nixpkgs-0fd1f4660cd4ff77850cb5fb60681aced8a09d04.tar.xz
nixpkgs-0fd1f4660cd4ff77850cb5fb60681aced8a09d04.tar.zst
nixpkgs-0fd1f4660cd4ff77850cb5fb60681aced8a09d04.zip
qterminal: 0.8.0 -> 0.9.0
Diffstat (limited to 'pkgs/desktops/lxqt/optional/qterminal/default.nix')
-rw-r--r--pkgs/desktops/lxqt/optional/qterminal/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/desktops/lxqt/optional/qterminal/default.nix b/pkgs/desktops/lxqt/optional/qterminal/default.nix
index 1b23079dece..3d5a25634d7 100644
--- a/pkgs/desktops/lxqt/optional/qterminal/default.nix
+++ b/pkgs/desktops/lxqt/optional/qterminal/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, qt5, lxqt }:
+{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtermwidget, qt5 }:
 
 stdenv.mkDerivation rec {
   name = "${pname}-${version}";
@@ -14,14 +14,14 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [
     cmake
-    lxqt.lxqt-build-tools
+    lxqt-build-tools
   ];
 
   buildInputs = [
     qt5.qtbase
     qt5.qttools
     qt5.qtx11extras
-    lxqt.qtermwidget
+    qtermwidget
   ];
 
   cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];