Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
937 B
Nix
48 lines
937 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
|
|
python3.pythonOnBuildForHost
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
mdds
|
|
python3
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-boost=${boost.dev}"
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|