2018-07-05 12:33:11 +02:00
|
|
|
{ stdenv, fetchFromGitHub, mpfr, libxml2, intltool, pkgconfig, doxygen,
|
2017-08-29 10:29:57 +02:00
|
|
|
autoreconfHook, readline, libiconv, icu, curl, gnuplot, gettext }:
|
2010-08-15 15:55:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-19 17:33:45 +02:00
|
|
|
name = "libqalculate-${version}";
|
2018-12-15 13:49:02 +01:00
|
|
|
version = "2.8.2";
|
2010-08-15 15:55:02 +02:00
|
|
|
|
2018-07-05 12:33:11 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "qalculate";
|
|
|
|
repo = "libqalculate";
|
|
|
|
rev = "v${version}";
|
2018-12-15 13:49:02 +01:00
|
|
|
sha256 = "10d3dcq8zprj1bnhq6gl9smpbv7fq0nx3jw9s3f8lkl3bavc34ca";
|
2010-08-15 15:55:02 +02:00
|
|
|
};
|
|
|
|
|
2016-09-19 15:03:22 +02:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
|
2016-06-19 17:33:45 +02:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig autoreconfHook doxygen ];
|
2017-08-29 10:29:57 +02:00
|
|
|
buildInputs = [ curl gettext libiconv readline ];
|
|
|
|
propagatedBuildInputs = [ libxml2 mpfr icu ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
intltoolize -f
|
|
|
|
'';
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace libqalculate/Calculator.cc \
|
|
|
|
--replace 'commandline = "gnuplot"' 'commandline = "${gnuplot}/bin/gnuplot"' \
|
|
|
|
--replace '"gnuplot -"' '"${gnuplot}/bin/gnuplot -"'
|
2018-02-02 03:57:21 +01:00
|
|
|
'' + stdenv.lib.optionalString stdenv.cc.isClang ''
|
|
|
|
substituteInPlace src/qalc.cc \
|
|
|
|
--replace 'printf(_("aborted"))' 'printf("%s", _("aborted"))'
|
2017-08-29 10:29:57 +02:00
|
|
|
'';
|
2010-08-15 15:55:02 +02:00
|
|
|
|
2016-06-19 17:33:45 +02:00
|
|
|
preBuild = ''
|
|
|
|
pushd docs/reference
|
|
|
|
doxygen Doxyfile
|
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-08-15 15:55:02 +02:00
|
|
|
description = "An advanced calculator library";
|
2016-06-19 17:33:45 +02:00
|
|
|
homepage = http://qalculate.github.io;
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = with maintainers; [ gebner ];
|
2018-10-11 14:24:40 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2016-06-19 17:33:45 +02:00
|
|
|
platforms = platforms.all;
|
2010-08-15 15:55:02 +02:00
|
|
|
};
|
|
|
|
}
|