nixpkgs-suyu/pkgs/applications/office/gnumeric/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, intltool, perlPackages
, goffice, gnome, wrapGAppsHook, gtk3, bison, python3Packages
, itstool
}:
let
2019-12-25 09:29:32 +01:00
inherit (python3Packages) python pygobject3;
in stdenv.mkDerivation rec {
pname = "gnumeric";
2021-06-16 06:44:27 +02:00
version = "1.12.50";
src = fetchurl {
2021-01-15 06:42:41 +01:00
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-06-16 06:44:27 +02:00
sha256 = "dYgZuhvWmDgp+efG1xp/ogzXWjZSonHluwA9XYvMFLg=";
};
2018-07-25 23:44:21 +02:00
configureFlags = [ "--disable-component" ];
2020-09-01 02:12:06 +02:00
nativeBuildInputs = [ pkg-config intltool bison itstool wrapGAppsHook ];
# ToDo: optional libgda, introspection?
buildInputs = [
goffice gtk3 gnome.adwaita-icon-theme
python pygobject3
] ++ (with perlPackages; [ perl XMLParser ]);
enableParallelBuilding = true;
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
versionPolicy = "odd-unstable";
};
};
meta = with lib; {
description = "The GNOME Office Spreadsheet";
2021-01-15 06:42:41 +01:00
license = lib.licenses.gpl2Plus;
homepage = "http://projects.gnome.org/gnumeric/";
2017-05-04 21:42:28 +02:00
platforms = platforms.unix;
2013-12-28 15:49:19 +01:00
maintainers = [ maintainers.vcunat ];
};
}