summary refs log blame commit diff
path: root/pkgs/applications/editors/texmaker/default.nix
blob: 76c8e4ae0e44365b65650a05631e3e51ff0ee55f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                             


                         
                  



                                                            
                                                                    

    
                                         
                                                       
                                                        

                   
                                                                                          








                                                                 
                                                




                                                
{ stdenv, fetchurl, qt4, qmake4Hook, poppler_qt4, zlib, pkgconfig, poppler }:

stdenv.mkDerivation rec {
  pname = "texmaker";
  version = "4.5";
  name = "${pname}-${version}";

  src = fetchurl {
    url = "http://www.xm1math.net/texmaker/${name}.tar.bz2";
    sha256 = "056njk6j8wma23mlp7xa3rgfaxx0q8ynwx8wkmj7iy0b85p9ds9c";
  };

  buildInputs = [ qt4 poppler_qt4 zlib ];
  nativeBuildInputs = [ pkgconfig poppler qmake4Hook ];
  NIX_CFLAGS_COMPILE="-I${poppler.dev}/include/poppler";

  preConfigure = ''
    qmakeFlags="$qmakeFlags DESKTOPDIR=$out/share/applications ICONDIR=$out/share/pixmaps"
  '';

  meta = with stdenv.lib; {
    description = "TeX and LaTeX editor";
    longDescription=''
	This editor is a full fledged IDE for TeX and
	LaTeX editing with completion, structure viewer, preview,
	spell checking and support of any compilation chain.
	'';
    homepage = http://www.xm1math.net/texmaker/;
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ cfouche ];
  };
}