3
0
Fork 0
forked from mirrors/nixpkgs

cb2bib: init at 1.9.2

This commit is contained in:
Edward Tjörnhammar 2016-02-29 19:36:51 +01:00
parent 9af50a2e7d
commit cd897f657c
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, qt5Full, 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 = [ qt5Full lzo libX11 ];
QTDIR=qt5Full;
configurePhase =''
./configure --prefix $out
'';
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;
};
}

View file

@ -11549,6 +11549,10 @@ let
cava = callPackage ../applications/audio/cava { };
cb2bib = callPackage ../applications/office/cb2bib {
inherit (xorg) libX11;
};
cbatticon = callPackage ../applications/misc/cbatticon { };
cbc = callPackage ../applications/science/math/cbc { };