liborcus: init at 0.19.2
This commit is contained in:
parent
03d505df0c
commit
91174e6a2c
45
pkgs/by-name/li/liborcus/package.nix
Normal file
45
pkgs/by-name/li/liborcus/package.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitLab
|
||||
, autoreconfHook
|
||||
, pkg-config
|
||||
, boost
|
||||
, libixion
|
||||
, mdds
|
||||
, python3
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "liborcus";
|
||||
version = "0.19.2";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "orcus";
|
||||
repo = "orcus";
|
||||
rev = version;
|
||||
hash = "sha256-+9C52H99c/kL5DEIoXV+WcLnTftRbicRLQN/FdIXBw8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
boost
|
||||
libixion
|
||||
mdds
|
||||
python3
|
||||
zlib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Collection of parsers and import filters for spreadsheet documents";
|
||||
homepage = "https://gitlab.com/orcus/orcus";
|
||||
changelog = "https://gitlab.com/orcus/orcus/-/blob/${src.rev}/CHANGELOG";
|
||||
license = licenses.mpl20;
|
||||
maintainers = [];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user