summary refs log blame commit diff
path: root/pkgs/applications/office/cb2bib/default.nix
blob: abff61b881fc1fc0c2fda691bf4dfcd3fcdf0fee (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                            








                                                                    






                                                           








                                                                                                                                               
 
{ stdenv, fetchurl, qmakeHook, qtbase, qtwebkit, qtx11extras, lzo, libX11 }:

stdenv.mkDerivation rec {
  name = pname + "-" + version;
  pname = "cb2bib";
  version = "1.9.2";
  src = fetchurl {
    url = "http://www.molspaces.com/dl/progs/${name}.tar.gz";
    sha256 = "0yz79v023w1229wzck3gij0iqah1xg8rg4a352q8idvg7bdmyfin";
  };
  buildInputs = [ qtbase qtwebkit qtx11extras lzo libX11 ];
  nativeBuildInputs = [ qmakeHook ];

  configurePhase = ''
    runHook preConfigure
    ./configure --prefix $out --qmakepath $QMAKE
    runHook postConfigure
  '';

  meta = with stdenv.lib; {
    description = "Rapidly extract unformatted, or unstandardized bibliographic references from email alerts, journal Web pages and PDF files";
    homepage = http://www.molspaces.com/d_cb2bib-overview.php;
    maintainers = with maintainers; [ edwtjo ];
    license = licenses.gpl3;
  };

}