nixpkgs/pkgs/development/libraries/libqalculate/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, mpfr, libxml2, intltool, pkg-config, doxygen,
2017-08-29 08:29:57 +00:00
autoreconfHook, readline, libiconv, icu, curl, gnuplot, gettext }:
stdenv.mkDerivation rec {
pname = "libqalculate";
2021-11-03 10:29:40 +00:00
version = "3.21.0";
2018-07-05 10:33:11 +00:00
src = fetchFromGitHub {
owner = "qalculate";
repo = "libqalculate";
rev = "v${version}";
2021-11-03 10:29:40 +00:00
sha256 = "sha256-aKNoLkqpnC+jOvqs7S7SYBu+5VZ+hHHzBkwccg+kYMQ=";
};
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = [ intltool pkg-config autoreconfHook doxygen ];
2017-08-29 08:29:57 +00:00
buildInputs = [ curl gettext libiconv readline ];
propagatedBuildInputs = [ libxml2 mpfr icu ];
enableParallelBuilding = true;
preConfigure = ''
intltoolize -f
'';
patchPhase = ''
2020-01-26 07:06:03 +00:00
substituteInPlace libqalculate/Calculator-plot.cc \
2017-08-29 08:29:57 +00:00
--replace 'commandline = "gnuplot"' 'commandline = "${gnuplot}/bin/gnuplot"' \
--replace '"gnuplot - ' '"${gnuplot}/bin/gnuplot - '
'' + lib.optionalString stdenv.cc.isClang ''
substituteInPlace src/qalc.cc \
--replace 'printf(_("aborted"))' 'printf("%s", _("aborted"))'
2017-08-29 08:29:57 +00:00
'';
preBuild = ''
pushd docs/reference
doxygen Doxyfile
popd
'';
meta = with lib; {
description = "An advanced calculator library";
2020-03-04 06:59:17 +00:00
homepage = "http://qalculate.github.io";
maintainers = with maintainers; [ gebner ];
2018-10-11 12:24:40 +00:00
license = licenses.gpl2Plus;
platforms = platforms.all;
};
}