summary refs log tree commit diff
path: root/pkgs/applications/editors/texstudio
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2018-02-10 01:10:14 +0100
committerajs124 <git@ajs124.de>2018-02-13 16:33:49 +0100
commit0ee6040dc2fa25bfbe4526e6292608076c6fa5b5 (patch)
tree1cc25a8c3f1f493798603bdf419d3eb4b9a297f9 /pkgs/applications/editors/texstudio
parentb37fd0aa3aadd0ef3d39c0db962fabff76858829 (diff)
downloadnixpkgs-0ee6040dc2fa25bfbe4526e6292608076c6fa5b5.tar
nixpkgs-0ee6040dc2fa25bfbe4526e6292608076c6fa5b5.tar.gz
nixpkgs-0ee6040dc2fa25bfbe4526e6292608076c6fa5b5.tar.bz2
nixpkgs-0ee6040dc2fa25bfbe4526e6292608076c6fa5b5.tar.lz
nixpkgs-0ee6040dc2fa25bfbe4526e6292608076c6fa5b5.tar.xz
nixpkgs-0ee6040dc2fa25bfbe4526e6292608076c6fa5b5.tar.zst
nixpkgs-0ee6040dc2fa25bfbe4526e6292608076c6fa5b5.zip
texstudio: move from qt4 to qt5
Diffstat (limited to 'pkgs/applications/editors/texstudio')
-rw-r--r--pkgs/applications/editors/texstudio/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix
index fd973d4fbde..03505ec11a5 100644
--- a/pkgs/applications/editors/texstudio/default.nix
+++ b/pkgs/applications/editors/texstudio/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt4, qmake4Hook, poppler_qt4, zlib, pkgconfig}:
+{ stdenv, fetchurl, qt5, poppler_qt5, zlib, pkgconfig}:
 
 stdenv.mkDerivation rec {
   pname = "texstudio";
@@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
     sha256 = "18rxd7ra5k2f7s4c296b3v3pqhxjmfix9xpy9i1g4jm87ygqrbnd";
   };
 
-  nativeBuildInputs = [ qmake4Hook pkgconfig ];
-  buildInputs = [ qt4 poppler_qt4 zlib ];
+  nativeBuildInputs = [ qt5.qmake pkgconfig ];
+  buildInputs = [ qt5.qtbase qt5.qtscript qt5.qtsvg poppler_qt5 zlib ];
 
   qmakeFlags = [ "NO_APPDATA=True" ];
 
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
 	'';
     homepage = http://texstudio.sourceforge.net;
     license = licenses.gpl2Plus;
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" ];
     maintainers = with maintainers; [ cfouche ];
   };
 }