nixpkgs/pkgs/by-name/li/libixion/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

42 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;
};
}