depot/third_party/nixpkgs/pkgs/development/libraries/libqalculate/default.nix
Default email 555cd8a8f9 Project import generated by Copybara.
GitOrigin-RevId: 5633bcff0c6162b9e4b5f1264264611e950c8ec7
2024-10-09 18:51:18 +02:00

82 lines
1.5 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, intltool
, pkg-config
, doxygen
, autoreconfHook
, buildPackages
, curl
, gettext
, libiconv
, readline
, libxml2
, mpfr
, icu
, gnuplot
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libqalculate";
version = "5.3.0";
src = fetchFromGitHub {
owner = "qalculate";
repo = "libqalculate";
rev = "v${finalAttrs.version}";
hash = "sha256-YNw6oFjrbYifIlAF2fz+htT1PIk9oEn7nBrnIZIR7DE=";
};
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = [
intltool
pkg-config
autoreconfHook
doxygen
];
depsBuildBuild = [
buildPackages.stdenv.cc
];
buildInputs = [
curl
gettext
libiconv
readline
];
propagatedBuildInputs = [
libxml2
mpfr
icu
];
enableParallelBuilding = true;
preConfigure = ''
intltoolize -f
'';
patchPhase = ''
substituteInPlace libqalculate/Calculator-plot.cc \
--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"))'
'';
preBuild = ''
pushd docs/reference
doxygen Doxyfile
popd
'';
meta = with lib; {
description = "Advanced calculator library";
homepage = "http://qalculate.github.io";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ gebner doronbehar alyaeanyx ];
mainProgram = "qalc";
platforms = platforms.all;
};
})