biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / office / cb2bib / default.nix
blob331e6a7c3a26454a0a1a83f9a25f71e0c93b92ad
1 { lib, stdenv, fetchurl, qmake, qtbase, qtwebkit, qtx11extras, lzo, libX11, wrapQtAppsHook }:
3 stdenv.mkDerivation rec {
4   pname = "cb2bib";
5   version = "2.0.0";
6   src = fetchurl {
7     url = "https://www.molspaces.com/dl/progs/${pname}-${version}.tar.gz";
8     sha256 = "0gv7cnxi84lr6d5y71pd67h0ilmf5c88j1jxgyn9dvj19smrv99h";
9   };
10   buildInputs = [ qtbase qtwebkit qtx11extras lzo libX11 ];
11   nativeBuildInputs = [ qmake wrapQtAppsHook ];
13   configurePhase = ''
14     runHook preConfigure
15     ./configure --prefix $out --qmakepath $QMAKE
16     runHook postConfigure
17   '';
19   meta = with lib; {
20     description = "Rapidly extract unformatted, or unstandardized bibliographic references from email alerts, journal Web pages and PDF files";
21     homepage = "http://www.molspaces.com/d_cb2bib-overview.php";
22     maintainers = with maintainers; [ edwtjo ];
23     license = licenses.gpl3;
24   };