depot/third_party/nixpkgs/pkgs/by-name/li/libixion/package.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

41 lines
835 B
Nix

{ lib
, stdenv
, fetchFromGitLab
, autoreconfHook
, pkg-config
, boost
, mdds
, python3
}:
stdenv.mkDerivation rec {
pname = "libixion";
version = "0.19.0";
src = fetchFromGitLab {
owner = "ixion";
repo = "ixion";
rev = version;
hash = "sha256-BrexWRaxrLTWuoU62kqws3tlSqVOHecSV5MXc4ZezFs=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
boost
mdds
python3
];
meta = with lib; {
description = "General purpose formula parser, interpreter, formula cell dependency tracker and spreadsheet document model backend all in one package";
homepage = "https://gitlab.com/ixion/ixion";
changelog = "https://gitlab.com/ixion/ixion/-/blob/${src.rev}/CHANGELOG";
license = licenses.mpl20;
maintainers = [ ];
platforms = platforms.all;
};
}