summary refs log tree commit diff
path: root/pkgs/desktops/lxqt
diff options
context:
space:
mode:
authorromildo <malaquias@gmail.com>2017-02-19 08:34:30 -0300
committerromildo <malaquias@gmail.com>2017-02-19 08:34:30 -0300
commit45aa578ee4ac86101533b447717d0eb38b5c07d1 (patch)
treeb01240b51357b31f3c52a44f6f8769311f6fc209 /pkgs/desktops/lxqt
parent160b9539f4cf668f85ec40ba02909c63368b7541 (diff)
downloadnixlib-45aa578ee4ac86101533b447717d0eb38b5c07d1.tar
nixlib-45aa578ee4ac86101533b447717d0eb38b5c07d1.tar.gz
nixlib-45aa578ee4ac86101533b447717d0eb38b5c07d1.tar.bz2
nixlib-45aa578ee4ac86101533b447717d0eb38b5c07d1.tar.lz
nixlib-45aa578ee4ac86101533b447717d0eb38b5c07d1.tar.xz
nixlib-45aa578ee4ac86101533b447717d0eb38b5c07d1.tar.zst
nixlib-45aa578ee4ac86101533b447717d0eb38b5c07d1.zip
lxqt-common: 0.11.0 -> 0.11.2
Diffstat (limited to 'pkgs/desktops/lxqt')
-rw-r--r--pkgs/desktops/lxqt/core/lxqt-common/default.nix18
1 files changed, 8 insertions, 10 deletions
diff --git a/pkgs/desktops/lxqt/core/lxqt-common/default.nix b/pkgs/desktops/lxqt/core/lxqt-common/default.nix
index a4b8f000dc7b..cc114c31dfd5 100644
--- a/pkgs/desktops/lxqt/core/lxqt-common/default.nix
+++ b/pkgs/desktops/lxqt/core/lxqt-common/default.nix
@@ -1,26 +1,24 @@
-{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt, xorg, hicolor_icon_theme, xmessage }:
+{ stdenv, fetchFromGitHub, cmake, qt5, lxqt, hicolor_icon_theme, xmessage }:
 
 stdenv.mkDerivation rec {
   name = "${pname}-${version}";
   pname = "lxqt-common";
-  version = "0.11.0";
+  version = "0.11.2";
 
   src = fetchFromGitHub {
     owner = "lxde";
     repo = pname;
     rev = version;
-    sha256 = "14nx3zcknwsn713wdnmb2xl15vf21vh13kxscdwmfnd48m5j4m3b";
+    sha256 = "07ih2w9ksbxqwy36xvgb9b31740nhkm7ap70wvv8q6x0wyhn71gn";
   };
 
-  nativeBuildInputs = [ cmake ];
+  nativeBuildInputs = [
+    cmake
+    lxqt.lxqt-build-tools
+  ];
 
   buildInputs = [
-    qt5.qtx11extras
-    qt5.qttools
     qt5.qtsvg
-    kde5.kwindowsystem
-    lxqt.liblxqt
-    lxqt.libqtxdg
     hicolor_icon_theme
     xmessage
   ];
@@ -36,7 +34,7 @@ stdenv.mkDerivation rec {
     description = "Common files for LXQt";
     homepage = https://github.com/lxde/lxqt-common;
     license = licenses.lgpl21;
-    maintainers = with maintainers; [ romildo ];
     platforms = with platforms; unix;
+    maintainers = with maintainers; [ romildo ];
   };
 }