nixpkgs/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 00:29:32 -08:00
inherit (python3Packages) python pygobject3;
in stdenv.mkDerivation rec {
pname = "gnumeric";
2021-03-23 02:07:18 -07:00
version = "1.12.49";
src = fetchurl {
2021-01-14 21:42:41 -08:00
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-03-23 02:07:18 -07:00
sha256 = "kcBy7JXDLgCxVv/oAVyTsyuO3zaPkEFDYZPPoy6E7Vc=";
};
2018-07-25 14:44:21 -07:00
configureFlags = [ "--disable-component" ];
2020-08-31 17:12:06 -07: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-14 21:42:41 -08:00
license = lib.licenses.gpl2Plus;
homepage = "http://projects.gnome.org/gnumeric/";
2017-05-04 12:42:28 -07:00
platforms = platforms.unix;
2013-12-28 06:49:19 -08:00
maintainers = [ maintainers.vcunat ];
};
}