summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix
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/lxqt-powermanagement/default.nix
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/lxqt-powermanagement/default.nix')
-rw-r--r--pkgs/desktops/lxqt/lxqt-powermanagement/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix b/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix
index 6bdf5ce2c0c..e9e6a41a62f 100644
--- a/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtx11extras, qtsvg, kwindowsystem, solid, kidletime, liblxqt, libqtxdg }:
+{ lib, mkDerivation, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtx11extras, qtsvg, kwindowsystem, solid, kidletime, liblxqt, libqtxdg }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   pname = "lxqt-powermanagement";
   version = "0.14.1";
 
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
     done
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Power management module for LXQt";
     homepage = https://github.com/lxqt/lxqt-powermanagement;
     license = licenses.lgpl21;