summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/qterminal
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-07-27 17:05:17 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-08-19 21:22:18 -0400
commit3167eb3780ca59f1786e9f80d017e5ac3e7807ac (patch)
tree747ce5be757961a0a53d2c9e4dddf37e22364c8c /pkgs/desktops/lxqt/qterminal
parent2d09e4892947a16199a189d755618fc2bd5c34a5 (diff)
downloadnixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.gz
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.bz2
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.lz
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.xz
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.tar.zst
nixpkgs-3167eb3780ca59f1786e9f80d017e5ac3e7807ac.zip
lxqt: use qt5's mkDerivation
This should also ensure that the applications get wrapped
appropriately.
Diffstat (limited to 'pkgs/desktops/lxqt/qterminal')
-rw-r--r--pkgs/desktops/lxqt/qterminal/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/desktops/lxqt/qterminal/default.nix b/pkgs/desktops/lxqt/qterminal/default.nix
index 748d33aa2ce..6405be07ee8 100644
--- a/pkgs/desktops/lxqt/qterminal/default.nix
+++ b/pkgs/desktops/lxqt/qterminal/default.nix
@@ -1,7 +1,7 @@
-{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtermwidget,
+{ lib, mkDerivation, fetchFromGitHub, cmake, lxqt-build-tools, qtermwidget,
   qtbase, qttools, qtx11extras }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   pname = "qterminal";
   version = "0.14.1";
 
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     qtermwidget
   ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A lightweight Qt-based terminal emulator";
     homepage = https://github.com/lxqt/qterminal;
     license = licenses.gpl2;