about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorChaddaï Fouché <chaddai.fouche@gmail.com>2014-04-23 12:09:25 +0200
committerChaddaï Fouché <chaddai.fouche@gmail.com>2014-04-29 16:49:20 +0200
commitce82a2d6d91f3e9d7472eac047d9b34c8e557be6 (patch)
tree2020b093afd936af52fe148e4953b6f0f08a1436 /pkgs/applications/editors
parented3a809a3dab44585c5c78a2a6f78776427fcacc (diff)
downloadnixlib-ce82a2d6d91f3e9d7472eac047d9b34c8e557be6.tar
nixlib-ce82a2d6d91f3e9d7472eac047d9b34c8e557be6.tar.gz
nixlib-ce82a2d6d91f3e9d7472eac047d9b34c8e557be6.tar.bz2
nixlib-ce82a2d6d91f3e9d7472eac047d9b34c8e557be6.tar.lz
nixlib-ce82a2d6d91f3e9d7472eac047d9b34c8e557be6.tar.xz
nixlib-ce82a2d6d91f3e9d7472eac047d9b34c8e557be6.tar.zst
nixlib-ce82a2d6d91f3e9d7472eac047d9b34c8e557be6.zip
Cleaning up the description and fixing qt to qt4
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/texstudio/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix
index 20e8e4bba3e7..01f290d9df89 100644
--- a/pkgs/applications/editors/texstudio/default.nix
+++ b/pkgs/applications/editors/texstudio/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt, popplerQt4, zlib}:
+{ stdenv, fetchurl, qt4, popplerQt4, zlib}:
 
 stdenv.mkDerivation rec {
   pname = "texstudio";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "167d78nfk265jjvl129nr70v8ladb2rav2qyhw7ngr6m54gak831";
   };
 
-  buildInputs = [ qt popplerQt4 zlib ];
+  buildInputs = [ qt4 popplerQt4 zlib ];
 
   preConfigure = ''
     export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$(echo ${popplerQt4}/include/poppler/qt4) "
@@ -19,7 +19,12 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "Fork of TeXMaker, this editor is a full fledged IDE for LaTeX editing with completion, structure viewer, preview and support of any compilation chain.";
+    description = "TeX and LaTeX editor";
+    longDescription=''
+	Fork of TeXMaker, this editor is a full fledged IDE for 
+	LaTeX editing with completion, structure viewer, preview,
+	spell checking and support of any compilation chain.
+	'';
     homepage = "http://texstudio.sourceforge.net/";
     license = licenses.gpl2Plus;
     platforms = platforms.linux;