nixpkgs/pkgs/applications/office/cb2bib/default.nix

27 lines
852 B
Nix
Raw Normal View History

2017-06-02 15:40:19 +00:00
{ stdenv, fetchurl, qmake, qtbase, qtwebkit, qtx11extras, lzo, libX11 }:
2016-02-29 18:36:51 +00:00
stdenv.mkDerivation rec {
pname = "cb2bib";
version = "2.0.0";
2016-02-29 18:36:51 +00:00
src = fetchurl {
url = "https://www.molspaces.com/dl/progs/${pname}-${version}.tar.gz";
sha256 = "0gv7cnxi84lr6d5y71pd67h0ilmf5c88j1jxgyn9dvj19smrv99h";
2016-02-29 18:36:51 +00:00
};
2017-02-03 15:20:06 +00:00
buildInputs = [ qtbase qtwebkit qtx11extras lzo libX11 ];
2017-06-02 15:40:19 +00:00
nativeBuildInputs = [ qmake ];
2017-02-03 15:20:06 +00:00
configurePhase = ''
runHook preConfigure
./configure --prefix $out --qmakepath $QMAKE
runHook postConfigure
2016-02-29 18:36:51 +00:00
'';
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;
};
2017-02-03 15:20:06 +00:00
}