2017-08-29 09:29:57 +01:00
|
|
|
{ stdenv, fetchurl, mpfr, libxml2, intltool, pkgconfig, doxygen,
|
|
|
|
autoreconfHook, readline, libiconv, icu, curl, gnuplot, gettext }:
|
2010-08-15 14:55:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-19 16:33:45 +01:00
|
|
|
name = "libqalculate-${version}";
|
2018-02-24 10:54:45 +00:00
|
|
|
version = "2.2.1";
|
2010-08-15 14:55:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-06-19 16:33:45 +01:00
|
|
|
url = "https://github.com/Qalculate/libqalculate/archive/v${version}.tar.gz";
|
2018-02-24 10:54:45 +00:00
|
|
|
sha256 = "0bam1xvw4n5sm3g4kmggz2aha34xaw64kw15wl2lbkd2yzdjdm4l";
|
2010-08-15 14:55:02 +01:00
|
|
|
};
|
|
|
|
|
2016-09-19 14:03:22 +01:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
|
2016-06-19 16:33:45 +01:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig autoreconfHook doxygen ];
|
2017-08-29 09:29:57 +01: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 02:57:21 +00:00
|
|
|
'' + stdenv.lib.optionalString stdenv.cc.isClang ''
|
|
|
|
substituteInPlace src/qalc.cc \
|
|
|
|
--replace 'printf(_("aborted"))' 'printf("%s", _("aborted"))'
|
2017-08-29 09:29:57 +01:00
|
|
|
'';
|
2010-08-15 14:55:02 +01:00
|
|
|
|
2016-06-19 16:33:45 +01:00
|
|
|
preBuild = ''
|
|
|
|
pushd docs/reference
|
|
|
|
doxygen Doxyfile
|
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-08-15 14:55:02 +01:00
|
|
|
description = "An advanced calculator library";
|
2016-06-19 16:33:45 +01:00
|
|
|
homepage = http://qalculate.github.io;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ gebner ];
|
2016-06-19 16:33:45 +01:00
|
|
|
platforms = platforms.all;
|
2010-08-15 14:55:02 +01:00
|
|
|
};
|
|
|
|
}
|