about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2019-02-05 21:14:23 -0200
committerJosé Romildo Malaquias <malaquias@gmail.com>2019-02-12 09:56:05 -0200
commitf9346ff3d25aee82a1bf54e75ee2bd328a4b6b3f (patch)
treec0ddee7ee67b9a0419fef213c27d38ea94b28ce7 /pkgs/desktops
parentadb8201fcbeef4d7ee2f234ae2a41bb37aab2a3b (diff)
downloadnixlib-f9346ff3d25aee82a1bf54e75ee2bd328a4b6b3f.tar
nixlib-f9346ff3d25aee82a1bf54e75ee2bd328a4b6b3f.tar.gz
nixlib-f9346ff3d25aee82a1bf54e75ee2bd328a4b6b3f.tar.bz2
nixlib-f9346ff3d25aee82a1bf54e75ee2bd328a4b6b3f.tar.lz
nixlib-f9346ff3d25aee82a1bf54e75ee2bd328a4b6b3f.tar.xz
nixlib-f9346ff3d25aee82a1bf54e75ee2bd328a4b6b3f.tar.zst
nixlib-f9346ff3d25aee82a1bf54e75ee2bd328a4b6b3f.zip
pcmanfm-qt: 0.13.0 -> 0.14.0
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/lxqt/pcmanfm-qt/default.nix18
1 files changed, 8 insertions, 10 deletions
diff --git a/pkgs/desktops/lxqt/pcmanfm-qt/default.nix b/pkgs/desktops/lxqt/pcmanfm-qt/default.nix
index 99dace0e42e6..aa7479b02f83 100644
--- a/pkgs/desktops/lxqt/pcmanfm-qt/default.nix
+++ b/pkgs/desktops/lxqt/pcmanfm-qt/default.nix
@@ -1,35 +1,33 @@
-{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qt5, libfm-qt, menu-cache, lxmenu-data }:
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt, qtbase, qttools,
+  qtx11extras, libfm-qt, menu-cache, lxmenu-data }:
 
 stdenv.mkDerivation rec {
-  name = "${pname}-${version}";
   pname = "pcmanfm-qt";
-  version = "0.13.0";
+  version = "0.14.0";
 
   src = fetchFromGitHub {
     owner = "lxqt";
     repo = pname;
     rev = version;
-    sha256 = "0xnhdxx45fmbi5dqic3j2f7yq01s0xysimafj5zqs0a29zw3i4m0";
+    sha256 = "0hf4qyn12mpr6rrla9mf6ka5gb4y36amk7d14ayr7yka1r16p8lz";
   };
 
   nativeBuildInputs = [
     cmake
     pkgconfig
-    lxqt-build-tools
+    lxqt.lxqt-build-tools
   ];
 
   buildInputs = [
-    qt5.qtbase
-    qt5.qttools
-    qt5.qtx11extras
+    qtbase
+    qttools
+    qtx11extras
     libfm-qt
     libfm-qt
     menu-cache
     lxmenu-data
   ];
 
-  cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
-
   postPatch = ''
     for dir in autostart config; do
       substituteInPlace $dir/CMakeLists.txt \